123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- android:orientation="vertical"
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <RelativeLayout
- android:background="@android:color/white"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:orientation="horizontal">
- <ImageView
- android:layout_centerVertical="true"
- android:id="@+id/iv_back"
- android:layout_width="30dp"
- android:layout_height="38dp"
- android:layout_marginLeft="3dp"
- android:padding="10dp"
- android:src="@drawable/tittlebar_back_arrow_dark"/>
- <TextView
- android:layout_centerInParent="true"
- android:id="@id/tv_title"
- android:layout_width="wrap_content"
- android:text="@string/help"
- android:layout_height="wrap_content"
- android:ellipsize="end"
- android:gravity="center"
- android:maxLines="1"
- android:textColor="@android:color/black"
- android:textSize="17sp"/>
- </RelativeLayout>
- <ProgressBar
- android:id="@+id/progress"
- style="@style/Base.Widget.AppCompat.ProgressBar.Horizontal"
- android:layout_width="match_parent"
- android:layout_height="2dp"/>
- <WebView
- android:id="@+id/web"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </LinearLayout>
|