| 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_toggleText_root"
|
|
|
4 |
android:layout_width="match_parent"
|
|
|
5 |
android:layout_height="match_parent"
|
|
|
6 |
android:orientation="horizontal" >
|
|
|
7 |
|
|
|
8 |
<LinearLayout
|
|
|
9 |
android:id="@+id/linearLayout2"
|
|
|
10 |
android:layout_width="wrap_content"
|
|
|
11 |
android:layout_height="match_parent"
|
|
|
12 |
android:layout_weight="1"
|
|
|
13 |
android:orientation="vertical" >
|
|
|
14 |
|
|
|
15 |
|
|
|
16 |
android:id="@+id/linearLayout3"
|
|
|
17 |
android:layout_width="match_parent"
|
|
|
18 |
android:layout_height="wrap_content"
|
|
|
19 |
android:layout_weight="0.0" >
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
|
|
|
23 |
android:layout_width="wrap_content"
|
|
|
24 |
android:layout_height="wrap_content"
|
|
|
25 |
android:layout_weight="1"
|
|
|
26 |
android:orientation="vertical" >
|
|
|
27 |
|
|
|
28 |
<TextView
|
|
|
29 |
|
|
|
30 |
android:layout_width="wrap_content"
|
|
|
31 |
android:layout_height="wrap_content"
|
|
|
32 |
android:text="Medium Text"
|
|
|
33 |
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
34 |
|
|
|
35 |
<TextView
|
|
|
36 |
|
|
|
37 |
android:layout_width="wrap_content"
|
|
|
38 |
android:layout_height="wrap_content"
|
|
|
39 |
android:text="Medium Text"
|
|
|
40 |
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
41 |
</LinearLayout>
|
|
|
42 |
|
|
|
43 |
<ToggleButton
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
|
47 |
|
|
|
48 |
android:layout_marginTop="2dp"
|
|
|
49 |
android:text="ToggleButton" />
|
|
|
50 |
|
|
|
51 |
</LinearLayout>
|
|
|
52 |
|
|
|
53 |
</LinearLayout>
|
|
|
54 |
|
|
|
55 |
|