Rev 5 | Rev 17 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 5 | PointedEar | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 6 | PointedEar | 3 | android:orientation="vertical" android:layout_height="fill_parent" |
| 4 | android:layout_width="fill_parent"> |
||
| 5 | |||
| 6 | <TableLayout android:id="@+id/TableLayout01" |
||
| 7 | android:layout_height="fill_parent" android:layout_width="fill_parent" |
||
| 8 | android:stretchColumns="1,3" android:shrinkColumns="*" |
||
| 9 | android:layout_marginTop="10sp"> |
||
| 10 | <TableRow android:layout_height="wrap_content"> |
||
| 11 | <EditText android:layout_column="1" android:id="@+id/edit_value1" |
||
| 12 | android:inputType="numberDecimal" /> |
||
| 13 | <TextView android:layout_column="2" android:text="=" |
||
| 14 | android:gravity="center" android:textSize="25sp" /> |
||
| 15 | <EditText android:layout_column="3" |
||
| 16 | android:id="@+id/edit_value2" |
||
| 17 | android:inputType="numberDecimal" /> |
||
| 18 | </TableRow> |
||
| 19 | <TableRow android:layout_height="wrap_content"> |
||
| 20 | <Spinner android:layout_column="1" android:id="@+id/spinner_unit1" |
||
| 21 | android:drawSelectorOnTop="true" android:entries="@array/length_units_display" |
||
| 22 | android:entryValues="@array/length_units_values" /> |
||
| 23 | <TextView android:layout_column="2" android:text="" /> |
||
| 24 | <Spinner android:layout_column="3" android:id="@+id/spinner_unit2" |
||
| 25 | android:drawSelectorOnTop="true" android:entries="@array/length_units_display" |
||
| 26 | android:entryValues="@array/length_units_values" /> |
||
| 27 | |||
| 28 | </TableRow> |
||
| 29 | </TableLayout> |
||
| 5 | PointedEar | 30 | </LinearLayout> |