parent
32dc44945b
commit
690379bace
@ -1,37 +1,40 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||||
android:orientation="vertical" |
xmlns:tools="http://schemas.android.com/tools" |
||||||
xmlns:tools="http://schemas.android.com/tools" |
android:layout_width="match_parent" |
||||||
android:layout_width="match_parent" |
android:layout_height="match_parent" |
||||||
android:layout_height="match_parent"> |
android:orientation="vertical"> |
||||||
|
|
||||||
<androidx.appcompat.widget.Toolbar |
<androidx.appcompat.widget.Toolbar |
||||||
android:id="@+id/toolbar" |
android:id="@+id/toolbar" |
||||||
app:title="@string/new_report" |
android:layout_width="match_parent" |
||||||
android:layout_width="match_parent" |
android:layout_height="?attr/actionBarSize" |
||||||
android:layout_height="?attr/actionBarSize" |
app:layout_constraintEnd_toEndOf="parent" |
||||||
app:layout_constraintTop_toTopOf="parent" |
app:layout_constraintStart_toStartOf="parent" |
||||||
app:layout_constraintEnd_toEndOf="parent" |
app:layout_constraintTop_toTopOf="parent" |
||||||
app:layout_constraintStart_toStartOf="parent" /> |
app:title="@string/new_report" /> |
||||||
|
|
||||||
<androidx.recyclerview.widget.RecyclerView |
<androidx.recyclerview.widget.RecyclerView |
||||||
android:id="@+id/recyclerView" |
android:id="@+id/recyclerView" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="0dp" |
android:layout_height="0dp" |
||||||
app:layout_constraintTop_toBottomOf="@id/toolbar" |
android:clipToPadding="false" |
||||||
app:layout_constraintBottom_toTopOf="@+id/next" |
android:paddingBottom="72dp" |
||||||
app:layout_constraintEnd_toEndOf="parent" |
app:layout_constraintBottom_toBottomOf="parent" |
||||||
app:layout_constraintStart_toStartOf="parent" /> |
app:layout_constraintEnd_toEndOf="parent" |
||||||
|
app:layout_constraintStart_toStartOf="parent" |
||||||
|
app:layout_constraintTop_toBottomOf="@id/toolbar" |
||||||
|
tools:listitem="@layout/row_title" /> |
||||||
|
|
||||||
<com.google.android.material.button.MaterialButton |
<com.google.android.material.button.MaterialButton |
||||||
android:id="@+id/next" |
android:id="@+id/next" |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_marginRight="8dp" |
android:layout_marginEnd="16dp" |
||||||
android:layout_marginBottom="8dp" |
android:layout_marginBottom="16dp" |
||||||
app:layout_constraintBottom_toBottomOf="parent" |
app:layout_constraintBottom_toBottomOf="parent" |
||||||
app:layout_constraintEnd_toEndOf="parent" |
app:layout_constraintEnd_toEndOf="parent" |
||||||
tools:text="Next" /> |
tools:text="Next" /> |
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout> |
</androidx.constraintlayout.widget.ConstraintLayout> |
||||||
Loading…
Reference in new issue