You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.2 KiB
XML
60 lines
2.2 KiB
XML
3 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingLeft="16dp"
|
||
|
android:paddingRight="16dp"
|
||
|
tools:context="com.common.commonlibtest.viewpagerlayoutmanager.VariousRvDemoActivity">
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatButton
|
||
|
android:id="@+id/bt_circle"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:text="@string/circle_layout_manger"
|
||
|
app:textAllCaps="false" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatButton
|
||
|
android:id="@+id/bt_scale"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:text="@string/scale_layout_manager"
|
||
|
app:textAllCaps="false" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatButton
|
||
|
android:id="@+id/bt_circle_scale"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:text="@string/circle_scale_layout_manager"
|
||
|
app:textAllCaps="false" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatButton
|
||
|
android:id="@+id/bt_elevate_scale"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:text="@string/carousel_layout_manager"
|
||
|
app:textAllCaps="false" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatButton
|
||
|
android:id="@+id/bt_gallery"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:text="@string/gallery_layout_manager"
|
||
|
app:textAllCaps="false" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatButton
|
||
|
android:id="@+id/bt_rotate"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:text="@string/rotate_layout_manager"
|
||
|
app:textAllCaps="false" />
|
||
|
</LinearLayout>
|