2021-03-30 18:05:53 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
2021-04-20 14:47:30 +08:00
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/ll"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="45dp"
|
|
|
|
|
android:background="@color/colorPrimary"
|
|
|
|
|
android:layout_marginTop="@dimen/mystatusbar"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/layTop_left_tv"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
|
android:paddingRight="5dp"
|
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
|
android:src="@mipmap/fanhui" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:id="@+id/layTop_title"
|
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
|
</RelativeLayout>
|
2021-03-30 18:05:53 +08:00
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
|
android:id="@+id/pb"
|
|
|
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:indeterminate="false"
|
|
|
|
|
android:minHeight="3dp"
|
|
|
|
|
android:progressDrawable="@drawable/progress_bar_states"/>
|
|
|
|
|
<WebView
|
|
|
|
|
android:id="@+id/webView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
</LinearLayout>
|