03.
android:layout_width
=
"match_parent"
04.
android:layout_height
=
"match_parent"
>
05.
06.
<
TextView
07.
android:id
=
"@+id/textView1"
08.
android:layout_width
=
"wrap_content"
09.
android:layout_height
=
"wrap_content"
10.
android:text
=
"Your Information : "
/>
11.
12.
<
TableRow
13.
android:layout_width
=
"fill_parent"
14.
android:layout_height
=
"wrap_content"
>
15.
<
TextView
16.
android:id
=
"@+id/textView2"
17.
android:layout_width
=
"wrap_content"
18.
android:layout_height
=
"wrap_content"
19.
android:text
=
"Username : "
/>
20.
21.
<
TextView
22.
android:id
=
"@+id/textView3"
23.
android:layout_width
=
"wrap_content"
24.
android:layout_height
=
"wrap_content"
25.
android:text
=
"Win"
26.
android:textAppearance
=
"?android:attr/textAppearanceMedium"
/>
27.
28.
</
TableRow
>
29.
30.
<
TableRow
31.
android:layout_width
=
"fill_parent"
32.
android:layout_height
=
"wrap_content"
>
33.
<
TextView
34.
android:id
=
"@+id/textView4"
35.
android:layout_width
=
"wrap_content"
36.
android:layout_height
=
"wrap_content"
37.
android:text
=
"Password : "
/>
38.
39.
<
TextView
40.
android:id
=
"@+id/textView5"
41.
android:layout_width
=
"wrap_content"
42.
android:layout_height
=
"wrap_content"
43.
android:text
=
"win001"
44.
android:textAppearance
=
"?android:attr/textAppearanceMedium"
/>
45.
</
TableRow
>
46.
47.
<
Button
48.
android:id
=
"@+id/button1"
49.
android:layout_width
=
"wrap_content"
50.
android:layout_height
=
"wrap_content"
51.
android:text
=
"Button"
/>
52.
53.
</
TableLayout
>