Subversion Repositories ES

Rev

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

Rev 13 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/TableLayout01"
6
  <TableLayout android:id="@+id/TableLayout01"
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/temperatures_edit_value1" android:inputType="numberSigned|numberDecimal" />
12
        android:id="@+id/temperatures_edit_value1" android:inputType="numberSigned|numberDecimal" />
Line 26... Line 26...
26
        android:drawSelectorOnTop="true" android:entries="@array/temperature_units_display"
26
        android:drawSelectorOnTop="true" android:entries="@array/temperature_units_display"
27
        android:entryValues="@array/temperature_units_values" />
27
        android:entryValues="@array/temperature_units_values" />
28
    </TableRow>
28
    </TableRow>
29
  </TableLayout>
29
  </TableLayout>
30
30
-
 
31
  <TextView android:id="@+id/temperatures_text_off_scale" 
31
  <TextView android:text="@string/temperatures_off_scale"
32
    android:text="@string/temperatures_off_scale"
32
    android:id="@+id/temperatures_text_off_scale" android:layout_width="wrap_content"
33
    android:layout_width="wrap_content"
33
    android:layout_height="wrap_content" android:visibility="invisible" />
34
    android:layout_height="wrap_content" android:visibility="invisible" />
34
  <Button android:text="@string/button_clear" android:id="@+id/temperatures_button_clear"
35
  <Button android:text="@string/button_clear" android:id="@+id/temperatures_button_clear"
35
    android:layout_height="wrap_content" android:layout_width="100sp"
36
    android:layout_height="wrap_content" android:layout_width="100sp"
36
    android:layout_gravity="center_horizontal"></Button>
37
    android:layout_gravity="center_horizontal"></Button>
37
</LinearLayout>
38
</LinearLayout>