2010-09-06 22:07:40 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<LinearLayout
|
2010-11-18 12:52:19 -05:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-09-06 22:07:40 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
<TextView
|
2010-11-18 12:52:19 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/alias_add_description"
|
2011-03-06 06:09:12 -05:00
|
|
|
android:padding="5dp" />
|
2010-09-06 22:07:40 -04:00
|
|
|
<ListView
|
2010-11-18 12:52:19 -05:00
|
|
|
android:id="@+id/aliases"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2011-02-05 08:04:43 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
2010-11-18 12:52:19 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/alias"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_weight="1" />
|
2011-02-05 08:04:43 -05:00
|
|
|
<Button
|
|
|
|
android:id="@+id/add"
|
2010-11-18 12:52:19 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:enabled="false"
|
2011-02-05 08:04:43 -05:00
|
|
|
android:text="Add"
|
2011-03-06 06:09:12 -05:00
|
|
|
android:minWidth="75dp" />
|
2011-02-05 08:04:43 -05:00
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
2010-11-18 12:52:19 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2011-02-05 08:04:43 -05:00
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/ok"
|
|
|
|
android:text="Ok"
|
2011-03-06 06:09:12 -05:00
|
|
|
android:minWidth="90dp" />
|
2011-02-05 08:04:43 -05:00
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/cancel"
|
|
|
|
android:text="Cancel"
|
2011-03-06 06:09:12 -05:00
|
|
|
android:minWidth="90dp" />
|
2010-11-18 12:52:19 -05:00
|
|
|
</LinearLayout>
|
2010-09-06 22:07:40 -04:00
|
|
|
</LinearLayout>
|