|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + android:layout_marginRight="?android:attr/scrollbarSize" |
| 4 | + android:layout_width="match_parent" |
| 5 | + android:layout_height="match_parent" |
| 6 | + android:stretchColumns="*" > |
| 7 | + |
| 8 | + <LinearLayout |
| 9 | + android:orientation="vertical" |
| 10 | + android:layout_width="fill_parent" |
| 11 | + android:layout_height="wrap_content" |
| 12 | + android:layout_margin="3dip"> |
| 13 | + |
| 14 | + <TableLayout |
| 15 | + android:id="@+id/table" |
| 16 | + style="@style/TextAppearance.Small" |
| 17 | + android:layout_width="fill_parent" |
| 18 | + android:layout_height="wrap_content" |
| 19 | + android:stretchColumns="1" |
| 20 | + android:layout_weight="10" |
| 21 | + android:layout_margin="2dp" |
| 22 | + > |
| 23 | + <TableRow xmlns:android="http://schemas.android.com/apk/res/android" |
| 24 | + android:layout_margin="2dip" |
| 25 | + android:layout_width="fill_parent" |
| 26 | + android:layout_height="wrap_content" |
| 27 | + android:layout_weight="1" |
| 28 | + > |
| 29 | + <LinearLayout |
| 30 | + android:layout_width="0dip" |
| 31 | + android:layout_height="fill_parent" |
| 32 | + android:gravity="left" |
| 33 | + android:layout_weight="3" |
| 34 | + android:orientation="horizontal"> |
| 35 | + <TextView |
| 36 | + android:id="@+id/conv_doc_path" |
| 37 | + android:layout_width="fill_parent" |
| 38 | + android:layout_height="wrap_content" |
| 39 | + android:text="file name" |
| 40 | + android:maxLines="5" |
| 41 | + android:ellipsize="middle" |
| 42 | + style="@style/TextAppearance.Small" |
| 43 | + android:textColor="?attr/colorIcon" |
| 44 | + android:singleLine="false" |
| 45 | + /> |
| 46 | + </LinearLayout> |
| 47 | + </TableRow> |
| 48 | + <TableRow xmlns:android="http://schemas.android.com/apk/res/android" |
| 49 | + android:layout_margin="2dip" |
| 50 | + android:layout_width="fill_parent" |
| 51 | + android:layout_height="wrap_content" |
| 52 | + android:background="#60808080" |
| 53 | + > |
| 54 | + <TextView |
| 55 | + android:layout_margin="5dp" |
| 56 | + style="@style/TextAppearance.Small" |
| 57 | + android:text="@string/conv_doc_option1" |
| 58 | + android:textStyle="bold" |
| 59 | + android:singleLine="false" |
| 60 | + android:maxLines="3" |
| 61 | + android:layout_width="wrap_content" |
| 62 | + android:layout_height="wrap_content" |
| 63 | + android:textColor="?attr/colorIcon" |
| 64 | + /> |
| 65 | + </TableRow> |
| 66 | + <TableRow> |
| 67 | + <LinearLayout |
| 68 | + android:layout_width="0dip" |
| 69 | + android:layout_height="fill_parent" |
| 70 | + android:gravity="left" |
| 71 | + android:layout_weight="2" |
| 72 | + android:orientation="vertical"> |
| 73 | + <Button |
| 74 | + android:id="@+id/btn_conv" |
| 75 | + android:layout_width="fill_parent" |
| 76 | + android:layout_height="wrap_content" |
| 77 | + android:text="@string/convert_odf_and_open" |
| 78 | + android:layout_margin="3dip" |
| 79 | + android:textColor="?attr/colorIcon" |
| 80 | + style="@style/TextAppearance.Widget.EditText" |
| 81 | + /> |
| 82 | + <TextView |
| 83 | + android:layout_width="fill_parent" |
| 84 | + android:layout_height="wrap_content" |
| 85 | + android:text="@string/convert_odf_and_open_add_info" |
| 86 | + android:maxLines="5" |
| 87 | + android:ellipsize="middle" |
| 88 | + style="@style/TextAppearance.Small" |
| 89 | + android:textColor="?attr/colorIcon" |
| 90 | + android:singleLine="false" |
| 91 | + /> |
| 92 | + </LinearLayout> |
| 93 | + </TableRow> |
| 94 | + <TableRow xmlns:android="http://schemas.android.com/apk/res/android" |
| 95 | + android:id="@+id/trow_conv_path" |
| 96 | + android:layout_margin="2dip" |
| 97 | + android:layout_width="fill_parent" |
| 98 | + android:layout_height="wrap_content" |
| 99 | + android:layout_weight="1" |
| 100 | + > |
| 101 | + <LinearLayout |
| 102 | + android:layout_width="0dip" |
| 103 | + android:layout_height="fill_parent" |
| 104 | + android:gravity="left|center_vertical" |
| 105 | + android:layout_weight="1" |
| 106 | + android:orientation="horizontal"> |
| 107 | + <TextView |
| 108 | + android:id="@+id/lbl_conv_path" |
| 109 | + style="@style/TextAppearance.Small" |
| 110 | + android:singleLine="false" |
| 111 | + android:maxLines="3" |
| 112 | + android:text="@string/converted_path" |
| 113 | + android:textStyle="bold" |
| 114 | + android:textColor="?attr/colorIcon" |
| 115 | + android:layout_width="wrap_content" |
| 116 | + android:layout_height="wrap_content"/> |
| 117 | + </LinearLayout> |
| 118 | + <LinearLayout |
| 119 | + android:layout_width="0dip" |
| 120 | + android:layout_height="fill_parent" |
| 121 | + android:gravity="left" |
| 122 | + android:layout_weight="3" |
| 123 | + android:orientation="horizontal"> |
| 124 | + <TextView |
| 125 | + android:id="@+id/conv_path" |
| 126 | + android:layout_width="fill_parent" |
| 127 | + android:layout_height="wrap_content" |
| 128 | + android:text="download path" |
| 129 | + android:maxLines="5" |
| 130 | + android:ellipsize="middle" |
| 131 | + style="@style/TextAppearance.Small" |
| 132 | + android:textColor="?attr/colorIcon" |
| 133 | + android:singleLine="false" |
| 134 | + /> |
| 135 | + </LinearLayout> |
| 136 | + </TableRow> |
| 137 | + <TableRow xmlns:android="http://schemas.android.com/apk/res/android" |
| 138 | + android:id="@+id/trow_conv_file_exists1" |
| 139 | + android:layout_margin="2dip" |
| 140 | + android:layout_width="fill_parent" |
| 141 | + android:layout_height="wrap_content" |
| 142 | + android:background="#60808080" |
| 143 | + > |
| 144 | + <TextView |
| 145 | + android:layout_margin="5dp" |
| 146 | + style="@style/TextAppearance.Small" |
| 147 | + android:text="@string/conv_doc_option2" |
| 148 | + android:textStyle="bold" |
| 149 | + android:singleLine="false" |
| 150 | + android:maxLines="3" |
| 151 | + android:layout_width="wrap_content" |
| 152 | + android:layout_height="wrap_content" |
| 153 | + android:textColor="?attr/colorIcon" |
| 154 | + /> |
| 155 | + </TableRow> |
| 156 | + <TableRow android:id="@+id/trow_conv_file_exists2" |
| 157 | + > |
| 158 | + <LinearLayout |
| 159 | + android:layout_width="0dip" |
| 160 | + android:layout_height="fill_parent" |
| 161 | + android:gravity="left" |
| 162 | + android:layout_weight="2" |
| 163 | + android:orientation="vertical"> |
| 164 | + <Button |
| 165 | + android:id="@+id/btn_open_existing" |
| 166 | + android:layout_width="fill_parent" |
| 167 | + android:layout_height="wrap_content" |
| 168 | + android:text="@string/open_existing" |
| 169 | + android:layout_margin="3dip" |
| 170 | + android:textColor="?attr/colorIcon" |
| 171 | + style="@style/TextAppearance.Widget.EditText" |
| 172 | + /> |
| 173 | + <TextView |
| 174 | + android:layout_width="fill_parent" |
| 175 | + android:layout_height="wrap_content" |
| 176 | + android:text="@string/odf_open_previously_converted" |
| 177 | + android:maxLines="5" |
| 178 | + android:ellipsize="middle" |
| 179 | + style="@style/TextAppearance.Small" |
| 180 | + android:textColor="?attr/colorIcon" |
| 181 | + android:singleLine="false" |
| 182 | + /> |
| 183 | + </LinearLayout> |
| 184 | + </TableRow> |
| 185 | + </TableLayout> |
| 186 | + </LinearLayout> |
| 187 | +</ScrollView> |
0 commit comments