123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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"
- android:id="@+id/rl_activity_html"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <View
- android:id="@+id/view_status_bar"
- android:layout_width="match_parent"
- android:layout_height="20dp"
- app:layout_constrainedHeight="true"
- android:background="@color/color_59e5d5"
- app:layout_constraintHeight_default="wrap"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <LinearLayout
- android:id="@+id/ll_activity_html"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <View
- android:id="@+id/view_statusbar"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:background="@color/white"
- android:visibility="gone" />
- <ProgressBar
- android:id="@+id/progressBar"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="match_parent"
- android:layout_height="2dip"
- android:progressDrawable="@drawable/pg_stu" />
- </LinearLayout>
- <FrameLayout
- android:id="@+id/view_parent"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@+id/ll_activity_html"
- android:scrollbars="none" />
- </LinearLayout>
|