26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.widget.LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.NavigationBarView
|
|
android:id="@+id/nbv_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:nbv_mode="left"/>
|
|
<ProgressBar
|
|
android:id="@+id/pgLoading"
|
|
android:visibility="visible"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2dp"
|
|
android:max="100"
|
|
android:progress="0"
|
|
android:progressDrawable="@drawable/progressbar"
|
|
style="?android:attr/progressBarStyleHorizontal"/>
|
|
<WebView
|
|
android:id="@+id/webView"
|
|
android:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</android.widget.LinearLayout>
|