01 | <? xml version = "1.0" encoding = "utf-8" ?> |
04 | android:layout_width = "match_parent" |
05 | android:layout_height = "match_parent" |
06 | android:orientation = "vertical" |
07 | android:gravity = "center" > |
09 | android:id = "@+id/chkIos" |
10 | android:layout_width = "wrap_content" |
11 | android:layout_height = "wrap_content" |
12 | android:text = "iPhone" /> |
14 | android:id = "@+id/chkAndroid" |
15 | android:layout_width = "wrap_content" |
16 | android:layout_height = "wrap_content" |
17 | android:text = "Android" |
18 | android:checked = "true" /> |
20 | android:id = "@+id/chkWindows" |
21 | android:layout_width = "wrap_content" |
22 | android:layout_height = "wrap_content" |
23 | android:text = "Windows Phone" /> |
25 | android:id = "@+id/btnDisplay" |
26 | android:layout_width = "wrap_content" |
27 | android:layout_height = "wrap_content" |
28 | android:text = "DISPLAY" /> |
|