|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/display_row_body"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="50dip"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="10dip"
|
|
|
|
android:paddingRight="5dip" >
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/spinner"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="0dip" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/display_row_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/TextAppearance.GEN_EditLabel" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/display_row_edit"
|
|
|
|
style="@style/TextAppearance.EditRowDisplay"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="right"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:paddingLeft="5dip" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/TEA_Separator"
|
|
|
|
style="@style/TEA_Separator"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="1px" />
|
|
|
|
|
|
|
|
</LinearLayout>
|