30 lines
996 B
XML
30 lines
996 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#ffffff"
|
|
tools:ignore="Overdraw" >
|
|
|
|
<Button
|
|
android:id="@+id/send"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:text="@string/send" />
|
|
|
|
<EditText
|
|
android:id="@+id/description"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/send"
|
|
android:freezesText="true"
|
|
android:hint="@string/description" />
|
|
|
|
<ListView
|
|
android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/description" />
|
|
|
|
</RelativeLayout> |