2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:padding="16dip">
|
|
|
|
|
|
|
|
<TextView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="5dip"
|
|
|
|
android:text="Identity Name:" />
|
|
|
|
|
|
|
|
<EditText android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="5dip"
|
|
|
|
android:id="@+id/identity_name"
|
|
|
|
android:text="" />
|
|
|
|
|
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_marginBottom="16dip"
|
|
|
|
android:gravity="right">
|
|
|
|
|
|
|
|
<TableLayout android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:stretchColumns="*">
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<Button android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:layout_marginRight="17dip"
|
|
|
|
android:id="@+id/cancel_button"
|
|
|
|
android:text="Cancel"/>
|
|
|
|
|
|
|
|
<Button android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:id="@+id/ok_button"
|
|
|
|
android:text="Ok"/>
|
|
|
|
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</LinearLayout>
|
2011-12-20 18:20:44 +00:00
|
|
|
</LinearLayout>
|