2014-05-27 01:36:58 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-05-29 03:00:29 +02:00
|
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-05-27 01:36:58 +02:00
|
|
|
android:layout_width="match_parent"
|
2014-05-29 03:00:29 +02:00
|
|
|
android:layout_height="wrap_content"
|
2015-03-12 17:48:30 +01:00
|
|
|
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"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:stretchColumns="1">
|
2014-05-29 03:00:29 +02:00
|
|
|
|
|
|
|
<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"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginRight="5dp">
|
2014-05-29 03:00:29 +02:00
|
|
|
|
|
|
|
<requestFocus />
|
|
|
|
</EditText>
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow
|
|
|
|
android:layout_width="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="wrap_content">
|
2014-05-29 03:00:29 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:text="@string/osmo_edit_color" />
|
2014-05-29 03:00:29 +02:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/ColorSpinner"
|
2014-05-27 01:36:58 +02:00
|
|
|
android:layout_width="fill_parent"
|
2014-05-29 03:00:29 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginRight="5dp" />
|
2014-05-29 03:00:29 +02:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
</TableLayout>
|