1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17    android:orientation="vertical"
18    android:layout_width="match_parent"
19    android:layout_height="wrap_content"
20    android:id="@+id/parent"
21    >
22    <LinearLayout
23        android:orientation="horizontal"
24        android:layout_width="match_parent"
25        android:layout_height="match_parent"
26        >
27        <Button
28            android:layout_width="wrap_content"
29            android:layout_height="wrap_content"
30            android:text="Add Button"
31            android:id="@+id/addNewButton"
32            />
33        <CheckBox
34            android:layout_width="wrap_content"
35            android:layout_height="wrap_content"
36            android:text="Custom Animations"
37            android:id="@+id/customAnimCB"
38            />
39    </LinearLayout>
40    <LinearLayout
41        android:orientation="horizontal"
42        android:layout_width="match_parent"
43        android:layout_height="wrap_content"
44        >
45        <CheckBox
46            android:layout_width="wrap_content"
47            android:layout_height="wrap_content"
48            android:checked="true"
49            android:text="In"
50            android:id="@+id/appearingCB"
51            />
52        <CheckBox
53            android:layout_width="wrap_content"
54            android:layout_height="wrap_content"
55            android:checked="true"
56            android:text="Out"
57            android:id="@+id/disappearingCB"
58            />
59    </LinearLayout>
60    <LinearLayout
61        android:orientation="horizontal"
62        android:layout_width="match_parent"
63        android:layout_height="wrap_content"
64        >
65        <CheckBox
66            android:layout_width="wrap_content"
67            android:layout_height="wrap_content"
68            android:checked="true"
69            android:text="Changing-In"
70            android:id="@+id/changingAppearingCB"
71            />
72        <CheckBox
73            android:layout_width="wrap_content"
74            android:layout_height="wrap_content"
75            android:checked="true"
76            android:text="Changing-Out"
77            android:id="@+id/changingDisappearingCB"
78            />
79    </LinearLayout>
80</LinearLayout>
81