Subversion Repositories ES

Rev

Go to most recent revision | Details | 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"
3
    android:orientation="vertical"
4
    android:layout_width="fill_parent"
5
    android:layout_height="fill_parent"
6
    >
7
 
8
<TextView  
9
    android:layout_width="fill_parent" 
10
    android:layout_height="wrap_content" 
11
    android:text="@string/prompt01"
12
    />
13
 
14
<EditText android:id="@+id/et_amount"
15
        android:layout_width="fill_parent"
16
        android:layout_height="wrap_content"
17
        android:inputType="numberDecimal" />
18
 
19
<Spinner android:id="@+id/sp_s_currencies"
20
        android:layout_width="fill_parent"
21
        android:layout_height="wrap_content"
22
        android:drawSelectorOnTop="true"
23
        android:entries="@array/cur_display"
24
        android:entryValues="@array/cur_values" />
25
 
26
<Spinner android:id="@+id/sp_t_currencies"
27
        android:layout_width="fill_parent"
28
        android:layout_height="wrap_content"
29
        android:drawSelectorOnTop="true"
30
        android:entries="@array/cur_display"
31
        android:entryValues="@array/cur_values" />
32
 
33
</LinearLayout>