| 90 |
Kevin |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
android:id="@+id/layout_simpleText_root"
|
|
|
4 |
android:layout_width="match_parent"
|
|
|
5 |
android:layout_height="match_parent"
|
|
|
6 |
android:orientation="vertical" >
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
android:layout_width="wrap_content"
|
|
|
11 |
android:layout_height="wrap_content"
|
|
|
12 |
android:text="Medium Text"
|
|
|
13 |
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
14 |
|
|
|
15 |
<TextView
|
|
|
16 |
|
|
|
17 |
|
|
|
18 |
android:layout_height="wrap_content"
|
|
|
19 |
android:text="Large Text"
|
|
|
20 |
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
21 |
|
|
|
22 |
</LinearLayout>
|