|
2 | 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 | 3 | android:layout_width="match_parent" |
4 | 4 | android:layout_height="match_parent" |
5 | | - android:orientation="vertical" |
6 | | - android:padding="8dp"> |
7 | | - |
8 | | - <TextView android:text="@string/fontSize" |
9 | | - android:layout_width="match_parent" |
10 | | - android:layout_height="wrap_content" |
11 | | - style="@android:style/TextAppearance.Medium" |
12 | | - android:paddingLeft="8dp"/> |
13 | | - <EditText android:hint="@string/fontSize" |
14 | | - android:id="@+id/fontSize" |
15 | | - android:layout_width="match_parent" |
16 | | - android:layout_height="wrap_content" |
17 | | - android:inputType="number"/> |
18 | | - <TextView android:text="@string/columnGap" |
19 | | - android:layout_width="match_parent" |
20 | | - android:layout_height="wrap_content" |
21 | | - style="@android:style/TextAppearance.Medium" |
22 | | - android:paddingLeft="8dp"/> |
23 | | - <EditText android:hint="@string/columnGap" |
24 | | - android:id="@+id/columnGap" |
25 | | - android:layout_width="match_parent" |
26 | | - android:layout_height="wrap_content" |
27 | | - android:inputType="number"/> |
28 | | - <CheckBox android:text="@string/syntheticSpread" |
29 | | - android:id="@+id/syntheticSpread" |
30 | | - android:layout_width="match_parent" |
31 | | - android:layout_height="wrap_content"/> |
32 | | - <LinearLayout |
33 | | - android:layout_width="match_parent" |
34 | | - android:layout_height="wrap_content" |
35 | | - android:orientation="horizontal" > |
36 | | - <Button android:text="@android:string/cancel" |
37 | | - android:id="@+id/cancel" |
38 | | - android:layout_width="0dp" |
39 | | - android:layout_weight="1" |
40 | | - android:layout_height="wrap_content"/> |
41 | | - <Button android:text="@android:string/ok" |
42 | | - android:id="@+id/ok" |
43 | | - android:layout_width="0dp" |
44 | | - android:layout_weight="1" |
45 | | - android:layout_height="wrap_content"/> |
46 | | - </LinearLayout> |
| 5 | + android:orientation="vertical"> |
| 6 | + |
| 7 | + <ScrollView |
| 8 | + android:layout_width="fill_parent" |
| 9 | + android:layout_height="fill_parent" |
| 10 | + android:id="@+id/scrollView" > |
| 11 | + |
| 12 | + <LinearLayout |
| 13 | + android:orientation="vertical" |
| 14 | + android:layout_width="fill_parent" |
| 15 | + android:layout_height="fill_parent" |
| 16 | + android:padding="4dp"> |
| 17 | + |
| 18 | + <TextView android:text="@string/fontSize" |
| 19 | + android:layout_width="match_parent" |
| 20 | + android:layout_height="wrap_content" |
| 21 | + style="?android:attr/listSeparatorTextViewStyle" |
| 22 | + android:paddingLeft="8dp"/> |
| 23 | + |
| 24 | + <EditText android:hint="@string/fontSize" |
| 25 | + android:id="@+id/fontSize" |
| 26 | + android:layout_width="match_parent" |
| 27 | + android:layout_height="wrap_content" |
| 28 | + android:inputType="number" |
| 29 | + android:layout_marginBottom="8dp" |
| 30 | + android:layout_marginTop="8dp" /> |
| 31 | + |
| 32 | + <TextView android:text="@string/columnGap" |
| 33 | + android:layout_width="match_parent" |
| 34 | + android:layout_height="wrap_content" |
| 35 | + style="?android:attr/listSeparatorTextViewStyle" |
| 36 | + android:paddingLeft="8dp" /> |
| 37 | + |
| 38 | + <EditText android:hint="@string/columnGap" |
| 39 | + android:id="@+id/columnGap" |
| 40 | + android:layout_width="match_parent" |
| 41 | + android:layout_height="wrap_content" |
| 42 | + android:inputType="number" |
| 43 | + android:layout_marginTop="8dp" |
| 44 | + android:layout_marginBottom="8dp" /> |
| 45 | + |
| 46 | + <LinearLayout |
| 47 | + android:orientation="horizontal" |
| 48 | + android:layout_width="fill_parent" |
| 49 | + android:layout_height="wrap_content"> |
| 50 | + |
| 51 | + <LinearLayout |
| 52 | + android:orientation="vertical" |
| 53 | + android:layout_width="wrap_content" |
| 54 | + android:layout_height="wrap_content" |
| 55 | + android:layout_weight="2"> |
| 56 | + |
| 57 | + <TextView |
| 58 | + android:layout_width="fill_parent" |
| 59 | + android:layout_height="wrap_content" |
| 60 | + android:text="@string/syntheticSpread" |
| 61 | + android:id="@+id/textView" |
| 62 | + style="?android:attr/listSeparatorTextViewStyle" |
| 63 | + android:ellipsize="end" |
| 64 | + android:lines="1" /> |
| 65 | + |
| 66 | + <RadioGroup |
| 67 | + android:layout_width="wrap_content" |
| 68 | + android:layout_height="wrap_content" |
| 69 | + android:orientation="vertical" |
| 70 | + android:padding="8dp" |
| 71 | + android:id="@+id/spreadSettings"> |
| 72 | + |
| 73 | + <RadioButton |
| 74 | + android:layout_width="wrap_content" |
| 75 | + android:layout_height="wrap_content" |
| 76 | + android:text="@string/auto" |
| 77 | + android:id="@+id/spreadAuto" |
| 78 | + android:layout_weight="1" |
| 79 | + android:checked="true" /> |
| 80 | + |
| 81 | + <RadioButton |
| 82 | + android:layout_width="wrap_content" |
| 83 | + android:layout_height="wrap_content" |
| 84 | + android:text="@string/single" |
| 85 | + android:id="@+id/spreadSingle" |
| 86 | + android:layout_weight="1" /> |
| 87 | + |
| 88 | + <RadioButton |
| 89 | + android:layout_width="wrap_content" |
| 90 | + android:layout_height="wrap_content" |
| 91 | + android:text="@string/double_" |
| 92 | + android:id="@+id/spreadDouble" |
| 93 | + android:singleLine="false" |
| 94 | + android:layout_weight="1" /> |
| 95 | + </RadioGroup> |
| 96 | + </LinearLayout> |
| 97 | + |
| 98 | + <LinearLayout |
| 99 | + android:orientation="vertical" |
| 100 | + android:layout_width="wrap_content" |
| 101 | + android:layout_height="wrap_content" |
| 102 | + android:layout_weight="1" |
| 103 | + android:layout_marginLeft="4dp"> |
| 104 | + |
| 105 | + <TextView |
| 106 | + style="?android:attr/listSeparatorTextViewStyle" |
| 107 | + android:layout_width="fill_parent" |
| 108 | + android:layout_height="wrap_content" |
| 109 | + android:text="@string/scrollMode" |
| 110 | + android:id="@+id/textView2" |
| 111 | + android:ellipsize="end" |
| 112 | + android:lines="1" /> |
| 113 | + |
| 114 | + <RadioGroup |
| 115 | + android:layout_width="wrap_content" |
| 116 | + android:layout_height="wrap_content" |
| 117 | + android:padding="8dp" |
| 118 | + android:orientation="vertical" |
| 119 | + android:id="@+id/scrollSettings"> |
| 120 | + |
| 121 | + <RadioButton |
| 122 | + android:layout_width="wrap_content" |
| 123 | + android:layout_height="wrap_content" |
| 124 | + android:text="Auto" |
| 125 | + android:id="@+id/scrollAuto" |
| 126 | + android:checked="true" |
| 127 | + android:layout_weight="1" /> |
| 128 | + |
| 129 | + <RadioButton |
| 130 | + android:layout_width="wrap_content" |
| 131 | + android:layout_height="wrap_content" |
| 132 | + android:text="Document" |
| 133 | + android:id="@+id/scrollDocument" |
| 134 | + android:layout_weight="1" /> |
| 135 | + |
| 136 | + <RadioButton |
| 137 | + android:layout_width="wrap_content" |
| 138 | + android:layout_height="wrap_content" |
| 139 | + android:text="Continuous" |
| 140 | + android:id="@+id/scrollContinuous" |
| 141 | + android:singleLine="false" |
| 142 | + android:layout_weight="1" /> |
| 143 | + </RadioGroup> |
| 144 | + </LinearLayout> |
| 145 | + |
| 146 | + </LinearLayout> |
| 147 | + </LinearLayout> |
| 148 | + </ScrollView> |
| 149 | + |
47 | 150 | </LinearLayout> |
0 commit comments