frag_set.xml 1.0 KB

12345678910111213141516171819202122232425
  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. xmlns:app="http://schemas.android.com/apk/res-auto"
  6. android:clickable="true">
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:background="@drawable/shape_back_fragment"
  11. android:orientation="vertical">
  12. <com.cr.widget.CrNavigationBarWidget
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. app:crTitle="@string/nv_title_set"
  16. app:isGotoBack="false"
  17. app:isDismiss="true"
  18. android:id="@+id/nv"
  19. android:layout_weight="0"/>
  20. <androidx.viewpager2.widget.ViewPager2
  21. android:layout_width="match_parent"
  22. android:layout_height="match_parent"
  23. android:id="@+id/frag_set_pages"/>
  24. </LinearLayout>
  25. </RelativeLayout>