Rev 16 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 16 | Rev 17 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | <?xml version="1.0" encoding="utf-8"?>
|
1 | <?xml version="1.0" encoding="utf-8"?>
|
| 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| 3 | android:orientation="vertical" android:layout_height="fill_parent"
|
3 | android:orientation="vertical" android:layout_height="match_parent"
|
| 4 | android:layout_width="fill_parent">
|
4 | android:layout_width="match_parent">
|
| 5 | 5 | ||
| 6 | <TableLayout android:id="@+id/currencies_table_widget"
|
6 | <TableLayout android:id="@+id/currencies_table_widget"
|
| 7 | android:layout_height="wrap_content" android:layout_width="fill_parent"
|
7 | android:layout_height="wrap_content" android:layout_width="match_parent"
|
| 8 | android:stretchColumns="1,3" android:shrinkColumns="*"
|
8 | android:stretchColumns="1,3" android:shrinkColumns="*"
|
| 9 | android:layout_marginTop="10sp">
|
9 | android:layout_marginTop="10sp">
|
| 10 | <TableRow android:layout_height="wrap_content">
|
10 | <TableRow android:layout_height="wrap_content">
|
| 11 | <EditText android:layout_column="1"
|
11 | <EditText android:layout_column="1"
|
| 12 | android:id="@+id/currencies_edit_value1" android:inputType="numberDecimal" />
|
12 | android:id="@+id/currencies_edit_value1" android:inputType="numberDecimal" />
|
| Line 29... | Line 29... | ||
| 29 | </TableLayout>
|
29 | </TableLayout>
|
| 30 | 30 | ||
| 31 | <Button android:text="@string/button_clear" android:id="@+id/currencies_button_clear"
|
31 | <Button android:text="@string/button_clear" android:id="@+id/currencies_button_clear"
|
| 32 | android:layout_height="wrap_content" android:layout_width="100sp"
|
32 | android:layout_height="wrap_content" android:layout_width="100sp"
|
| 33 | android:layout_gravity="center_horizontal"></Button>
|
33 | android:layout_gravity="center_horizontal"></Button>
|
| 34 | 34 | ||
| - | 35 | <TextView android:id="@+id/currencies_text_updating"
|
|
| - | 36 | android:text="@string/currencies_updating"
|
|
| - | 37 | android:layout_height="wrap_content"
|
|
| - | 38 | android:layout_width="match_parent"
|
|
| - | 39 | android:visibility="gone" />
|
|
| - | 40 | ||
| 35 | <TableLayout android:id="@+id/currencies_table_rates"
|
41 | <TableLayout android:id="@+id/currencies_table_rates"
|
| 36 | android:scrollbars="vertical" android:layout_height="wrap_content"
|
42 | android:layout_height="match_parent"
|
| 37 | android:layout_width="fill_parent" android:stretchColumns="*">
|
43 | android:layout_width="match_parent" android:stretchColumns="*"
|
| - | 44 | >
|
|
| 38 | <View android:layout_height="2dip" android:background="#FF909090" />
|
45 | <View android:layout_height="2dip" android:background="#FF909090" />
|
| 39 | <TableRow>
|
46 | <TableRow>
|
| 40 | <TextView android:text="@string/currencies_currency" />
|
47 | <TextView android:text="@string/currencies_currency" />
|
| 41 | <TextView android:text="@string/currencies_rate" />
|
48 | <TextView android:text="@string/currencies_rate" />
|
| - | 49 | <TextView android:text="@string/currencies_updated" />
|
|
| 42 | </TableRow>
|
50 | </TableRow>
|
| 43 | <View android:layout_height="1dip" android:background="#FF909090" />
|
51 | <View android:layout_height="1dip" android:background="#FF909090" />
|
| 44 | </TableLayout>
|
52 | </TableLayout>
|
| 45 | </LinearLayout>
|
53 | </LinearLayout>
|