2a3cf4151752370385e6e6f007b57f4542eea268.svn-base 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".ui.webview.WebActivity">
  9. <com.hjq.bar.TitleBar
  10. android:id="@+id/tb_web_title"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content" />
  13. <ProgressBar
  14. android:id="@+id/pb_web_progress"
  15. style="?android:attr/progressBarStyleHorizontal"
  16. android:layout_width="match_parent"
  17. android:layout_height="3dip"
  18. android:progressDrawable="@drawable/bg_web_progress_bar"
  19. android:visibility="gone" />
  20. <com.hjq.widget.HintLayout
  21. android:layout_width="match_parent"
  22. android:layout_height="match_parent">
  23. <WebView
  24. android:id="@+id/wv_web_view"
  25. android:visibility="invisible"
  26. android:layout_width="match_parent"
  27. android:layout_height="match_parent" />
  28. </com.hjq.widget.HintLayout>
  29. </LinearLayout>