25 lines
2.3 KiB
XML
25 lines
2.3 KiB
XML
|
<?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_weight="0.06" android:layout_height="50dp">
|
|||
|
<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_messages" android:layout_width="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentLeft="true"></Button>
|
|||
|
</RelativeLayout>
|
|||
|
<RelativeLayout android:id="@+id/relativeLayout2" android:layout_width="match_parent" android:layout_weight="0.68" android:layout_height="180dp">
|
|||
|
<EditText
|
|||
|
android:layout_height="match_parent"
|
|||
|
android:inputType="textMultiLine"
|
|||
|
android:id="@+id/currentMessageEdit"
|
|||
|
android:layout_width="match_parent"
|
|||
|
android:layout_alignParentTop="true"
|
|||
|
android:layout_alignParentLeft="true"
|
|||
|
android:gravity="top">
|
|||
|
</EditText>
|
|||
|
</RelativeLayout>
|
|||
|
<RelativeLayout android:layout_height="wrap_content" android:id="@+id/relativeLayout3" android:layout_weight="0.49" android:layout_width="match_parent">
|
|||
|
<ListView android:layout_width="match_parent" android:id="@+id/messageListView2" android:layout_height="186dp"></ListView>
|
|||
|
</RelativeLayout>
|
|||
|
</LinearLayout>
|