mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
XML
41 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<EditText
|
|
android:id="@+id/list_name"
|
|
android:layout_width="250dip"
|
|
android:layout_height="50dip"
|
|
android:hint="@string/CRA_list_name_hint"/>
|
|
|
|
<ListView
|
|
android:id="@+id/members_list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/cancel"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="50dip"
|
|
android:layout_weight="1"
|
|
android:text="@string/DLG_cancel"/>
|
|
|
|
<Button
|
|
android:id="@+id/save"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="50dip"
|
|
android:layout_weight="1"
|
|
android:text="@string/DLG_save"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |