1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:orientation="vertical" android:layout_width="match_parent"
4    android:layout_height="match_parent">
5
6    <TextView
7        android:layout_width="wrap_content"
8        android:layout_height="wrap_content"
9        android:text="CONDENSED"
10        android:textSize="50sp"
11        android:fontFamily="sans-serif-condensed"
12        />
13    <TextView
14        android:layout_width="wrap_content"
15        android:layout_height="wrap_content"
16        android:text="CONDENSED ITALIC"
17        android:textSize="30sp"
18        android:fontFamily="sans-serif-condensed"
19        android:textStyle="italic"
20        />
21    <TextView
22        android:layout_width="wrap_content"
23        android:layout_height="wrap_content"
24        android:text="MONOSPACE"
25        android:textSize="50sp"
26        android:fontFamily="monospace"/>
27
28    <Space
29        android:layout_width="wrap_content"
30        android:layout_height="30dp" />
31    <TextView
32        android:layout_width="wrap_content"
33        android:layout_height="wrap_content"
34        android:text="Custom"
35        android:textSize="20sp"
36        android:fontFamily="@font/testfont"/>
37
38    <Space
39        android:layout_width="wrap_content"
40        android:layout_height="30dp" />
41    <TextView
42        android:layout_width="wrap_content"
43        android:layout_height="wrap_content"
44        android:text="Custom family"
45        android:textSize="20sp"
46        android:fontFamily="@font/testfamily"/>
47    <TextView
48        android:layout_width="wrap_content"
49        android:layout_height="wrap_content"
50        android:text="Custom family"
51        android:textSize="20sp"
52        android:fontFamily="@font/testfamily"
53        android:textStyle="italic"/>
54
55</LinearLayout>