1<?xml version="1.0" encoding="utf-8"?><!--
2  Copyright 2020 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<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
17    xmlns:tools="http://schemas.android.com/tools"
18    android:layout_width="match_parent"
19    android:layout_height="match_parent"
20    tools:context=".MainActivity">
21
22    <LinearLayout
23        android:layout_width="match_parent"
24        android:layout_height="match_parent"
25        android:orientation="vertical">
26
27        <Button
28            android:id="@+id/rotationUnlocked"
29            android:layout_width="match_parent"
30            android:layout_height="wrap_content"
31            android:text="@string/rotation_unlocked_orientation" />
32
33        <Button
34            android:id="@+id/rotationLocked"
35            android:layout_width="match_parent"
36            android:layout_height="wrap_content"
37            android:text="@string/rotation_locked_orientation" />
38
39        <Button
40            android:id="@+id/rotationConfigChanges"
41            android:layout_width="match_parent"
42            android:layout_height="wrap_content"
43            android:text="@string/rotation_config_changes_overridden" />
44
45        <Button
46            android:id="@+id/viewpager"
47            android:layout_width="match_parent"
48            android:layout_height="wrap_content"
49            android:text="@string/viewpager" />
50
51        <Button
52            android:id="@+id/viewpager2"
53            android:layout_width="match_parent"
54            android:layout_height="wrap_content"
55            android:text="@string/viewpager2" />
56
57        <Button
58            android:id="@+id/foldable"
59            android:layout_width="match_parent"
60            android:layout_height="wrap_content"
61            android:text="@string/foldable" />
62
63        <Button
64            android:id="@+id/compose"
65            android:layout_width="match_parent"
66            android:layout_height="wrap_content"
67            android:text="@string/compose" />
68    </LinearLayout>
69</ScrollView>