summaryrefslogtreecommitdiffstats
path: root/samples/Support7Demos/res/layout/animated_recycler_view.xml
blob: e5ff03760a3c5dcacb1e47798941402974b7a3b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:id="@+id/container"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  android:orientation="horizontal"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content">

        <CheckBox
                android:id="@+id/enableAnimations"
                android:checked="true"
                android:text="@string/enableAnimations"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>

        <CheckBox
                android:id="@+id/enablePredictiveAnimations"
                android:checked="true"
                android:text="@string/enablePredictiveAnimations"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>

        <CheckBox
                android:id="@+id/enableInPlaceChange"
                android:checked="false"
                android:text="@string/enableInPlaceChange"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>

    </LinearLayout>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  android:orientation="horizontal"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content">

        <Button
                android:id="@+id/deleteButton"
                android:layout_weight=".5"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:onClick="deleteSelectedItems"
                android:text="@string/delete_item"/>

        <Button
                android:layout_weight=".5"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:onClick="addItem"
                android:text="@string/add_item"/>

        <Button
                android:layout_weight=".5"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:onClick="addDeleteItem"
                android:text="@string/add_delete_item"/>

        <Button
                android:layout_weight=".5"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:onClick="deleteAddItem"
                android:text="@string/delete_add_item"/>

        <Button
                android:layout_weight=".5"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:onClick="d1a2d3"
                android:text="@string/d1a2d3"/>

    </LinearLayout>

</LinearLayout>