64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
layout_gravity="center"
|
|
orientation="vertical"
|
|
background="#f5f3f6"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent">
|
|
<androidx.core.widget.NestedScrollView
|
|
background="#eae7ec"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent"
|
|
layout_above="@+id/ll_bottom_buttons"
|
|
layout_alignParentTop="true">
|
|
<LinearLayout
|
|
orientation="vertical"
|
|
id="@+id/ll_root"
|
|
padding="16dp"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent">
|
|
<TextView
|
|
id="@+id/tv_title"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
layout_marginBottom="8dp"
|
|
text="@string/app_account_deletion_sub_title"
|
|
style="@style/2132017880"/>
|
|
<TextView
|
|
id="@+id/tv_message"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
text="@string/app_account_deletion_message"
|
|
style="@style/2132017851"/>
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
<LinearLayout
|
|
orientation="horizontal"
|
|
id="@+id/ll_bottom_buttons"
|
|
background="#f5f3f6"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
weightSum="2"
|
|
layout_alignParentBottom="true">
|
|
<Button
|
|
id="@+id/btn_cancel"
|
|
layout_width="0dp"
|
|
layout_height="50dp"
|
|
text="@string/cancel"
|
|
layout_weight="1"
|
|
layout_marginHorizontal="@dimen/2131165401"
|
|
layout_marginVertical="@dimen/2131165397"
|
|
style="@style/2132017536"/>
|
|
<Button
|
|
textColor="#ffffff"
|
|
id="@+id/btn_continue"
|
|
layout_width="0dp"
|
|
layout_height="50dp"
|
|
text="@string/app_account_deletion_schedule_popup_continue"
|
|
layout_weight="1"
|
|
layout_marginHorizontal="@dimen/2131165401"
|
|
layout_marginVertical="@dimen/2131165397"
|
|
style="@style/2132017576"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|