31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<com.scb.phone.view.custom.RectangleRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
gravity="center_vertical"
|
||
|
id="@+id/rectangle_relative_layout"
|
||
|
background="#f5f3f6"
|
||
|
padding="20dp"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="match_parent"
|
||
|
layout_margin="2dp">
|
||
|
<RelativeLayout
|
||
|
gravity="center_horizontal"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<TextView
|
||
|
id="@+id/error_title"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
text="@string/custom_static_tap_to_retry"
|
||
|
layout_centerVertical="true"
|
||
|
style="@style/2132017849"/>
|
||
|
<ImageView
|
||
|
layout_width="28dp"
|
||
|
layout_height="28dp"
|
||
|
src="@drawable/ic_reload_empty_item"
|
||
|
layout_centerVertical="true"
|
||
|
contentDescription="@null"
|
||
|
layout_marginStart="12dp"
|
||
|
layout_toEndOf="@+id/error_title"/>
|
||
|
</RelativeLayout>
|
||
|
</com.scb.phone.view.custom.RectangleRelativeLayout>
|