| 123456789101112131415161718 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <androidx.appcompat.widget.AppCompatButton
- android:id="@+id/btn_next"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="下一个页面" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/rv_svga"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </androidx.appcompat.widget.LinearLayoutCompat>
|