46 lines
No EOL
1.5 KiB
XML
46 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="@dimen/dialog_content_bottom_margin"
|
|
android:paddingTop="@dimen/dialog_content_bottom_margin"
|
|
android:paddingLeft="@dimen/dialog_content_margin"
|
|
android:paddingRight="@dimen/dialog_content_margin"
|
|
android:stretchColumns="1">
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/osmo_connect_to_device_name" />
|
|
|
|
<EditText
|
|
android:id="@+id/Name"
|
|
android:layout_width="180dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp">
|
|
|
|
<requestFocus />
|
|
</EditText>
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/osmo_edit_color" />
|
|
|
|
<Spinner
|
|
android:id="@+id/ColorSpinner"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp" />
|
|
</TableRow>
|
|
|
|
</TableLayout> |