Layout cleanup

This commit is contained in:
CappielloAntonio 2022-01-13 10:39:56 +01:00
parent 5e25e5441b
commit a1b15a5d04
9 changed files with 31 additions and 33 deletions

View file

@ -1,7 +1,7 @@
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">
android:layout_height="wrap_content">
<RatingBar
android:id="@+id/rating_bar"
@ -11,10 +11,10 @@
android:layout_marginTop="12dp"
android:layout_marginEnd="24dp"
android:layout_marginBottom="12dp"
android:stepSize="1"
android:numStars="5"
android:rating="0"
app:layout_constraintStart_toStartOf="parent"
android:stepSize="1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>