<?xml version="1.0" encoding="utf-8"?>
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<ProgressBar
|
android:id="@+id/myProgressBar"
|
style="?android:attr/progressBarStyleHorizontal"
|
android:layout_width="match_parent"
|
android:layout_height="2dp"
|
android:background="@color/main_text_color" />
|
|
<FrameLayout
|
android:id="@+id/fl_webview"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"></FrameLayout>
|
</LinearLayout>
|
</FrameLayout>
|