1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2    android:layout_width="match_parent"
3    android:layout_height="match_parent"
4    android:orientation="vertical">
5
6    <TextView
7        android:id="@+id/text1"
8        android:text="@string/hello_world"
9        android:layout_width="match_parent"
10        android:layout_height="100dp"
11        android:autoSizeTextType="uniform"
12        android:autoSizePresetSizes="@array/autosize_text_sizes" />
13
14    <TextView
15        android:id="@+id/text2"
16        android:text="@string/hello_world"
17        android:layout_width="match_parent"
18        android:layout_height="50dp"
19        android:autoSizeTextType="uniform"
20        android:autoSizePresetSizes="@array/autosize_text_sizes" />
21
22    <TextView
23        android:id="@+id/text3"
24        android:text="@string/hello_world"
25        android:layout_width="match_parent"
26        android:layout_height="20dp"
27        android:autoSizeTextType="uniform"
28        android:autoSizePresetSizes="@array/autosize_text_sizes" />
29
30    <com.android.layoutlib.test.myapplication.DrawableArrayWidget
31        android:layout_width="match_parent"
32        android:layout_height="wrap_content"/>
33
34</LinearLayout>
35