1 |
<?xml version="1.0" encoding="utf-8"?> |
---|
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
---|
3 |
android:orientation="vertical" |
---|
4 |
android:layout_width="fill_parent" |
---|
5 |
android:layout_height="fill_parent" |
---|
6 |
> |
---|
7 |
|
---|
8 |
<EditText |
---|
9 |
android:id="@+id/editText01" |
---|
10 |
android:layout_width="fill_parent" |
---|
11 |
android:layout_height="wrap_content" |
---|
12 |
android:text="123 sans 湲�섦" |
---|
13 |
android:typeface="sans" |
---|
14 |
android:textSize="17pt" |
---|
15 |
/> |
---|
16 |
|
---|
17 |
<EditText |
---|
18 |
android:id="@+id/editText02" |
---|
19 |
android:layout_width="fill_parent" |
---|
20 |
android:layout_height="wrap_content" |
---|
21 |
android:text="1234 serif 湲�섦" |
---|
22 |
android:typeface="serif" |
---|
23 |
android:textSize="17pt" |
---|
24 |
/> |
---|
25 |
|
---|
26 |
<EditText |
---|
27 |
android:id="@+id/editText03" |
---|
28 |
android:layout_width="fill_parent" |
---|
29 |
android:layout_height="wrap_content" |
---|
30 |
android:text="1234 monospace 湲�섦" |
---|
31 |
android:typeface="monospace" |
---|
32 |
android:textSize="17pt" |
---|
33 |
/> |
---|
34 |
|
---|
35 |
<EditText |
---|
36 |
android:id="@+id/editText04" |
---|
37 |
android:layout_width="fill_parent" |
---|
38 |
android:layout_height="wrap_content" |
---|
39 |
android:text="1234 normal 湲�섦" |
---|
40 |
android:typeface="normal" |
---|
41 |
android:textSize="17pt" |
---|
42 |
/> |
---|
43 |
|
---|
44 |
<EditText |
---|
45 |
android:id="@+id/editText05" |
---|
46 |
android:layout_width="fill_parent" |
---|
47 |
android:layout_height="wrap_content" |
---|
48 |
android:text="1234 Customer 湲�섦" |
---|
49 |
android:textSize="17pt" |
---|
50 |
/> |
---|
51 |
</LinearLayout> |
---|