activity_svga_effect_recyclerview.xml 752 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <androidx.appcompat.widget.AppCompatButton
  8. android:id="@+id/btn_next"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="下一个页面" />
  12. <androidx.recyclerview.widget.RecyclerView
  13. android:id="@+id/rv_svga"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent" />
  16. </androidx.appcompat.widget.LinearLayoutCompat>