Subversion Repositories ES

Rev

Rev 13 | Rev 15 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13 Rev 14
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="fill_parent"
4
  android:layout_width="fill_parent">
4
  android:layout_width="fill_parent">
5
5
6
  <TableLayout android:id="@+id/TableLayout01"
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="fill_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"
Line 28... Line 28...
28
    </TableRow>
28
    </TableRow>
29
  </TableLayout>
29
  </TableLayout>
30
  <Button android:text="@string/button_clear" android:id="@+id/currencies_button_clear"
30
  <Button android:text="@string/button_clear" android:id="@+id/currencies_button_clear"
31
    android:layout_height="wrap_content" android:layout_width="100sp"
31
    android:layout_height="wrap_content" android:layout_width="100sp"
32
    android:layout_gravity="center_horizontal"></Button>
32
    android:layout_gravity="center_horizontal"></Button>
-
 
33
-
 
34
  <TableLayout android:id="@+id/currencies_table_rates"
-
 
35
    android:scrollbars="vertical" android:layout_height="wrap_content"
-
 
36
    android:layout_width="fill_parent" android:stretchColumns="*">
-
 
37
    <TableRow>
-
 
38
      <TextView android:text="@string/currencies_currency1" />
-
 
39
      <TextView android:text="@string/currencies_currency2" />
-
 
40
      <TextView android:text="@string/currencies_rate" />
-
 
41
    </TableRow>
-
 
42
  </TableLayout>
33
</LinearLayout>
43
</LinearLayout>