1234567891011121314151617181920212223242526272829303132333435 |
- <?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:orientation="vertical">
- <!-- <include layout="@layout/a_view_actionbar" />-->
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1">
- <com.bc_chat.bc_base.view.CustomWebView
- android:id="@+id/wv_web"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- <ProgressBar
- android:id="@+id/pb_load_bar"
- style="@style/Widget.AppCompat.ProgressBar.Horizontal"
- android:layout_width="match_parent"
- android:layout_height="3dp"
- android:background="@android:color/transparent"
- android:indeterminate="false"
- android:max="100"
- android:progress="50" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="#c4c4c4" />
- </LinearLayout>
|