38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
orientation="vertical"
|
|
background="#f5f3f6"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent">
|
|
<com.scb.phone.view.custom.webview.SCBWebView
|
|
id="@+id/wv_content"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent"/>
|
|
<LinearLayout
|
|
gravity="center"
|
|
orientation="vertical"
|
|
id="@+id/ll_error"
|
|
background="#f5f3f6"
|
|
padding="16dp"
|
|
visibility="gone"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent">
|
|
<ImageView
|
|
layout_gravity="bottom|center_horizontal"
|
|
id="@+id/iv_error_icon"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
src="@drawable/icon_easycash_empty"
|
|
contentDescription="@null"/>
|
|
<TextView
|
|
textSize="22sp"
|
|
textColor="#000000"
|
|
gravity="center"
|
|
id="@+id/tv_error_text"
|
|
paddingTop="10dp"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
text="@string/investment_discover_error_tap"/>
|
|
</LinearLayout>
|
|
</FrameLayout>
|