OsmAnd/OsmAnd/res/layout/osmo_connect_to_device.xml

61 lines
1.8 KiB
XML
Raw Normal View History

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"
2014-05-29 03:00:29 +02:00
android:paddingLeft="7dp"
android:paddingRight="7dp"
android:stretchColumns="1">
2014-05-24 17:32:18 +02:00
<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>
<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>