hisense_web_main.xml 872 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical" >
  6. <WebView
  7. android:id="@+id/webView"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent" />
  10. <ProgressBar
  11. android:id="@+id/progressbar"
  12. style="?android:attr/progressBarStyleHorizontal"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:focusable="false"
  16. android:maxHeight="2dp"
  17. android:minHeight="2dp"
  18. android:progressDrawable="@drawable/hisense_seekbar_background"
  19. android:thumb="@drawable/hisense_seekbar_thumb"
  20. android:thumbOffset="0dp" />
  21. </FrameLayout>