123456789101112131415161718192021222324 |
- <?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" >
- <WebView
- android:id="@+id/webView"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- <ProgressBar
- android:id="@+id/progressbar"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:focusable="false"
- android:maxHeight="2dp"
- android:minHeight="2dp"
- android:progressDrawable="@drawable/hisense_seekbar_background"
- android:thumb="@drawable/hisense_seekbar_thumb"
- android:thumbOffset="0dp" />
- </FrameLayout>
|