fragment_website.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout 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. <!-- <include layout="@layout/a_view_actionbar" />-->
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="0dp"
  10. android:layout_weight="1">
  11. <com.bc_chat.bc_base.view.CustomWebView
  12. android:id="@+id/wv_web"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent" />
  15. <ProgressBar
  16. android:id="@+id/pb_load_bar"
  17. style="@style/Widget.AppCompat.ProgressBar.Horizontal"
  18. android:layout_width="match_parent"
  19. android:layout_height="3dp"
  20. android:background="@android:color/transparent"
  21. android:indeterminate="false"
  22. android:max="100"
  23. android:progress="50" />
  24. </RelativeLayout>
  25. <View
  26. android:layout_width="match_parent"
  27. android:layout_height="1px"
  28. android:background="#c4c4c4" />
  29. </LinearLayout>