
Co-authored-by: Rafał Borcz <RafalBO99@outlook.com> Co-authored-by: doteq <doteeqq@gmail.com> Co-authored-by: Bartosz Bieniek <itsbk20@gmail.com>
52 lines
2.0 KiB
XML
52 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
tools:ignore="UselessParent">
|
|
|
|
<TextView
|
|
android:id="@+id/account_quick_dialog_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="24dp"
|
|
android:paddingLeft="24dp"
|
|
android:paddingEnd="24dp"
|
|
android:paddingRight="24dp"
|
|
android:text="@string/account_quick_title"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold"
|
|
app:firstBaselineToTopHeight="40dp" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/account_quick_dialog_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_weight="1"
|
|
android:overScrollMode="never"
|
|
tools:itemCount="3"
|
|
tools:listitem="@layout/item_account" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/account_quick_dialog_manger"
|
|
style="@style/Widget.Material3.Button.TextButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:text="@string/account_quick_manager" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|