2021-08-13 17:29:37 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
|
|
<RatingBar
|
|
|
|
|
android:id="@+id/rating_bar"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
|
android:stepSize="1"
|
|
|
|
|
android:numStars="5"
|
|
|
|
|
android:rating="0"
|
2021-08-17 14:46:10 +02:00
|
|
|
android:progressTint="@color/starTintColor"
|
|
|
|
|
android:progressBackgroundTint="@color/starBackgroundTintColor"
|
2021-08-13 17:29:37 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|