| 123456789101112131415161718192021222324252627282930313233343536 |
- <?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"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".ui.webview.WebActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_web_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <ProgressBar
- android:id="@+id/pb_web_progress"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="match_parent"
- android:layout_height="3dip"
- android:progressDrawable="@drawable/bg_web_progress_bar"
- android:visibility="gone" />
- <com.hjq.widget.HintLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <WebView
- android:id="@+id/wv_web_view"
- android:visibility="invisible"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </com.hjq.widget.HintLayout>
- </LinearLayout>
|