37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
orientation="vertical"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content">
|
|
<LinearLayout
|
|
gravity="center"
|
|
orientation="vertical"
|
|
background="@drawable/bg_white_rounded"
|
|
padding="16dp"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
layout_margin="5dp"
|
|
minHeight="180dp"
|
|
elevation="2dp">
|
|
<TextView
|
|
textSize="14sp"
|
|
textColor="#736e78"
|
|
gravity="center_horizontal"
|
|
id="@+id/error_title"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
text="@string/custom_error_title"
|
|
paddingStart="20dp"
|
|
paddingEnd="20dp"/>
|
|
<TextView
|
|
textColor="#959199"
|
|
gravity="center_horizontal"
|
|
id="@+id/error_description"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
text="@string/custom_error_description"
|
|
paddingStart="20dp"
|
|
paddingEnd="20dp"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|