init commit

This commit is contained in:
2011-12-17 16:05:20 +00:00
parent 140bdaff43
commit 8d76751061
34 changed files with 1053 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff">
<Button
android:id="@+id/send"
android:text="@string/send"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/description"
android:id="@+id/description"
android:layout_below="@id/send"
android:freezesText="true"
/>
<ListView
android:layout_below="@id/description"
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</RelativeLayout>