fgt_web.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/white_F9F9F9">
  6. <WebView
  7. android:id="@+id/webview"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
  11. android:scrollbars="none" />
  12. <ProgressBar
  13. android:id="@+id/act_web_loading_pb"
  14. style="?android:attr/progressBarStyleHorizontal"
  15. android:layout_width="match_parent"
  16. android:layout_height="2dp"
  17. android:layout_alignParentTop="true"
  18. android:max="100"
  19. android:progress="0"
  20. android:progressDrawable="@drawable/lay_list_progress_yellow" />
  21. <ImageView
  22. android:id="@+id/act_web_loading_iv"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_centerInParent="true" />
  26. </RelativeLayout>