fragment_shopmal.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. android:id="@+id/rl_activity_html"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical">
  8. <View
  9. android:id="@+id/view_status_bar"
  10. android:layout_width="match_parent"
  11. android:layout_height="20dp"
  12. app:layout_constrainedHeight="true"
  13. android:background="@color/color_59e5d5"
  14. app:layout_constraintHeight_default="wrap"
  15. app:layout_constraintLeft_toLeftOf="parent"
  16. app:layout_constraintTop_toTopOf="parent" />
  17. <LinearLayout
  18. android:id="@+id/ll_activity_html"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:orientation="vertical">
  22. <View
  23. android:id="@+id/view_statusbar"
  24. android:layout_width="match_parent"
  25. android:layout_height="0dp"
  26. android:background="@color/white"
  27. android:visibility="gone" />
  28. <ProgressBar
  29. android:id="@+id/progressBar"
  30. style="?android:attr/progressBarStyleHorizontal"
  31. android:layout_width="match_parent"
  32. android:layout_height="2dip"
  33. android:progressDrawable="@drawable/pg_stu" />
  34. </LinearLayout>
  35. <FrameLayout
  36. android:id="@+id/view_parent"
  37. android:layout_width="match_parent"
  38. android:layout_height="match_parent"
  39. android:layout_below="@+id/ll_activity_html"
  40. android:scrollbars="none" />
  41. </LinearLayout>