2014-05-22 01:13:36 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-05-24 17:32:18 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="3dp"
|
|
|
|
android:paddingRight="3dp"
|
|
|
|
android:stretchColumns="1" >
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_span="2" >
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/ConnectToDevice"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_connect_to_device" />
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/ConnectToGroup"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_connect_to_group" />
|
|
|
|
</RadioGroup>
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/LabelTrackerId"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_connect_to_device_tracker_id" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/TrackerId"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textCapCharacters"
|
|
|
|
android:paddingLeft="3dp"
|
|
|
|
android:selectAllOnFocus="true" />
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/LabelName"
|
|
|
|
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="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textCapWords"
|
|
|
|
android:paddingLeft="3dp" />
|
|
|
|
</TableRow>
|
2014-05-28 18:10:20 +02:00
|
|
|
|
2014-05-28 18:15:37 +02:00
|
|
|
<TableRow android:id="@+id/MyGroupName" android:visibility="gone">
|
2014-05-28 18:10:20 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_connect_to_my_nickname" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/NickName"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textCapWords"
|
|
|
|
android:paddingLeft="3dp" />
|
|
|
|
</TableRow>
|
2014-05-24 17:32:18 +02:00
|
|
|
|
|
|
|
</TableLayout>
|