diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/main_layout.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/res/layout/main_layout.xml b/res/layout/main_layout.xml new file mode 100644 index 0000000..9500f4d --- /dev/null +++ b/res/layout/main_layout.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical"> + <ListView android:id="@id/android:list" + android:layout_width="fill_parent" + android:layout_height="0dip" + android:layout_weight="1" /> + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:background="#ff808080"> + <EditText android:id="@+id/edit" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_weight="1" /> + <Button android:id="@+id/button" + android:layout_width="wrap_content" + android:layout_height="fill_parent" + android:text="Copy" /> + </LinearLayout> + <TextView android:id="@id/android:empty" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:text="Nothing here" /> +</LinearLayout> |