Subversion Repositories ES

Rev

Rev 17 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7 PointedEar 1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17 PointedEar 3
  android:orientation="vertical" android:layout_height="match_parent"
4
  android:layout_width="match_parent">
7 PointedEar 5
 
19 PointedEar 6
  <LinearLayout android:orientation="horizontal"
7
    android:layout_width="match_parent" android:layout_height="wrap_content"
7 PointedEar 8
    android:layout_marginTop="10sp">
19 PointedEar 9
    <EditText android:id="@+id/currencies_edit_value1"
10
      android:layout_width="match_parent" android:layout_height="wrap_content"
11
      android:layout_weight="1" android:inputType="numberDecimal" />
12
    <TextView android:text="=" android:minWidth="10sp"
13
      android:layout_width="wrap_content" android:layout_height="wrap_content"
14
      android:gravity="center" android:textSize="25sp" />
15
    <EditText android:id="@+id/currencies_edit_value2"
16
      android:layout_width="match_parent" android:layout_height="wrap_content"
17
      android:layout_weight="1" android:inputType="numberDecimal" />
18
  </LinearLayout>
19
  <LinearLayout android:orientation="horizontal"
20
    android:layout_width="match_parent" android:layout_height="wrap_content">
21
    <Spinner android:id="@+id/currencies_spinner_unit1"
22
      android:layout_width="match_parent" android:layout_height="wrap_content"
23
      android:layout_weight="1" android:drawSelectorOnTop="true"
24
      android:entries="@array/currency_units_display"
25
      android:entryValues="@array/currency_units_values" />
26
    <TextView android:text="" android:layout_width="wrap_content"
27
      android:layout_height="wrap_content" android:minWidth="10sp" />
28
    <Spinner android:id="@+id/currencies_spinner_unit2"
29
      android:layout_width="match_parent" android:layout_height="wrap_content"
30
      android:layout_weight="1" android:drawSelectorOnTop="true"
31
      android:entries="@array/currency_units_display"
32
      android:entryValues="@array/currency_units_values" />
33
  </LinearLayout>
15 PointedEar 34
 
13 PointedEar 35
  <Button android:text="@string/button_clear" android:id="@+id/currencies_button_clear"
36
    android:layout_height="wrap_content" android:layout_width="100sp"
19 PointedEar 37
    android:layout_gravity="center_horizontal"></Button>
17 PointedEar 38
  <TextView android:id="@+id/currencies_text_updating"
19 PointedEar 39
    android:text="@string/currencies_updating" android:layout_height="wrap_content"
40
    android:layout_width="match_parent" android:visibility="gone" />
41
 
17 PointedEar 42
  <TableLayout android:id="@+id/currencies_table_rates"
19 PointedEar 43
    android:layout_height="match_parent" android:layout_width="match_parent"
44
    android:stretchColumns="*">
15 PointedEar 45
    <View android:layout_height="2dip" android:background="#FF909090" />
14 PointedEar 46
    <TableRow>
16 PointedEar 47
      <TextView android:text="@string/currencies_currency" />
14 PointedEar 48
      <TextView android:text="@string/currencies_rate" />
17 PointedEar 49
      <TextView android:text="@string/currencies_updated" />
14 PointedEar 50
    </TableRow>
15 PointedEar 51
    <View android:layout_height="1dip" android:background="#FF909090" />
17 PointedEar 52
  </TableLayout>
7 PointedEar 53
</LinearLayout>