<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context="cn.sinata.xldutils.activitys.WebViewActivity">
|
<WebView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:scrollbars="vertical"
|
android:id="@+id/webView"/>
|
<LinearLayout
|
android:id="@+id/ll_loading"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@android:color/white"
|
android:gravity="center"
|
android:orientation="horizontal">
|
<ProgressBar
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
style="@style/Base.Widget.AppCompat.ProgressBar"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textColor="@color/textColor"
|
android:textSize="@dimen/textSize"
|
android:text="加载中..."
|
android:layout_marginLeft="4dp"/>
|
</LinearLayout>
|
</RelativeLayout>
|