k-observer/KObserverAndroid/res/layout/send_message_layout.xml
2013-01-19 21:55:39 +00:00

16 lines
2.0 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout1" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:orientation="vertical" android:layout_width="wrap_content" android:weightSum="1" android:background="@color/black">
<RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="320dp" android:layout_height="wrap_content" android:layout_weight="0.06">
<TextView android:id="@+id/textView1" android:text="К-Выборы" android:textAppearance="?android:attr/textAppearanceLarge" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_alignParentTop="true" android:layout_centerHorizontal="true"></TextView>
<TextView android:id="@+id/textView2" android:text="Введите сообщение" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_below="@+id/textView1" android:layout_centerHorizontal="true"></TextView>
<Button android:layout_height="wrap_content" android:text="Отправить" android:id="@+id/sendMessageButton" android:layout_width="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentRight="true"></Button>
<Button android:layout_height="wrap_content" android:text="Назад" android:id="@+id/backButton_send_message" android:layout_width="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentLeft="true"></Button>
</RelativeLayout>
<RelativeLayout android:layout_height="wrap_content" android:id="@+id/relativeLayout5" android:layout_width="match_parent" android:layout_weight="0.81">
<EditText android:id="@+id/messageEdit" android:inputType="textMultiLine" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:layout_width="match_parent" android:layout_height="200dp" android:gravity="top">
<requestFocus></requestFocus>
</EditText>
</RelativeLayout>
</LinearLayout>