43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
app:cardCornerRadius="16dp"
|
|
app:cardElevation="0dp">
|
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingVertical="16dp">
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/title_text"
|
|
style="@style/MaterialAlertDialog.Material3.Title.Text.CenterStacked"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:layout_marginBottom="16dp"
|
|
android:layout_marginHorizontal="16dp"
|
|
android:singleLine="false"
|
|
android:maxLines="2"
|
|
android:text="Seleziona lotto" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/item_list"
|
|
android:layout_width="match_parent"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
android:layout_height="wrap_content"
|
|
tools:listitem="@layout/dialog_select_lotti__item_model"
|
|
tools:itemCount="5"/>
|
|
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
</androidx.cardview.widget.CardView>
|
|
</layout> |