45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
orientation="horizontal"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
minHeight="180dp">
|
||
|
<LinearLayout
|
||
|
gravity="center_vertical"
|
||
|
orientation="vertical"
|
||
|
background="@drawable/bg_white_rounded"
|
||
|
padding="16dp"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_margin="5dp"
|
||
|
elevation="2dp">
|
||
|
<ImageView
|
||
|
layout_gravity="center"
|
||
|
id="@+id/icon"
|
||
|
layout_width="30dp"
|
||
|
layout_height="30dp"
|
||
|
src="@drawable/ic_yellow_warning"
|
||
|
layout_centerHorizontal="true"
|
||
|
contentDescription="@null"/>
|
||
|
<TextView
|
||
|
textColor="#454249"
|
||
|
gravity="center"
|
||
|
id="@+id/error_title"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
text="@string/not_eligible_account_error_title"
|
||
|
layout_below="@+id/icon"
|
||
|
layout_centerHorizontal="true"
|
||
|
style="@style/2132017832"/>
|
||
|
<TextView
|
||
|
textColor="#454249"
|
||
|
gravity="center"
|
||
|
id="@+id/error_description"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
text="@string/not_eligible_account_error_description"
|
||
|
layout_below="@+id/error_title"
|
||
|
style="@style/2132017832"/>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|