2018-11-24 18:51:41 +01:00
|
|
|
<?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"
|
2021-03-03 00:34:25 +01:00
|
|
|
android:layout_width="match_parent"
|
2018-11-24 18:51:41 +01:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-06-12 21:35:51 +02:00
|
|
|
<LinearLayout
|
2018-11-24 18:51:41 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-01-29 21:53:46 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
tools:ignore="UselessParent">
|
2018-11-24 18:51:41 +01:00
|
|
|
|
2020-06-12 21:35:51 +02:00
|
|
|
<TextView
|
2021-01-29 21:53:46 +01:00
|
|
|
android:id="@+id/account_quick_dialog_title"
|
2020-06-12 21:35:51 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="24dp"
|
|
|
|
android:paddingLeft="24dp"
|
|
|
|
android:paddingEnd="24dp"
|
|
|
|
android:paddingRight="24dp"
|
2021-01-29 21:53:46 +01:00
|
|
|
android:text="@string/account_quick_title"
|
2020-06-12 21:35:51 +02:00
|
|
|
android:textSize="20sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
app:firstBaselineToTopHeight="40dp" />
|
2018-11-24 18:51:41 +01:00
|
|
|
|
2020-06-12 21:35:51 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2021-01-29 21:53:46 +01:00
|
|
|
android:id="@+id/account_quick_dialog_recycler"
|
2020-06-12 21:35:51 +02:00
|
|
|
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
|
2021-01-29 21:53:46 +01:00
|
|
|
android:id="@+id/account_quick_dialog_manger"
|
2020-06-12 21:35:51 +02:00
|
|
|
style="@style/Widget.MaterialComponents.Button.TextButton"
|
2021-01-29 21:53:46 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-06-12 21:35:51 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
2021-01-29 21:53:46 +01:00
|
|
|
android:text="@string/account_quick_manager" />
|
2020-06-12 21:35:51 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2018-11-24 18:51:41 +01:00
|
|
|
</RelativeLayout>
|