<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white"
|
android:orientation="vertical">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:orientation="horizontal"
|
android:paddingLeft="8dp"
|
android:paddingRight="8dp">
|
|
|
<ImageView
|
android:id="@+id/iv_back"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_centerVertical="true"
|
android:scaleType="fitXY"
|
android:src="@drawable/yyj_sdk_ic_back" />
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="wrap_content"
|
android:layout_height="match_parent"
|
android:layout_centerInParent="true"
|
android:gravity="center"
|
android:text="@string/yyj_sdk_pay"
|
android:textColor="@color/yyj_sdk_title_txt"
|
android:textSize="18sp" />
|
|
|
</RelativeLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/yyj_sdk_line"></View>
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<com.tencent.smtt.sdk.WebView
|
android:id="@+id/web_view"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
|
<ProgressBar
|
android:id="@+id/progress_bar"
|
android:layout_width="40dp"
|
android:layout_height="40dp"
|
android:layout_gravity="center"
|
android:visibility="gone" />
|
</FrameLayout>
|
</LinearLayout>
|