63a111c4eed95784e68840df6fdba210517b52d6.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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:layout_width="match_parent"
  26. android:layout_height="match_parent" />
  27. </com.hjq.widget.HintLayout>
  28. </LinearLayout>