51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<RelativeLayout 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/messageList"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:divider="@null"
|
||
|
|
android:dividerHeight="0dp"
|
||
|
|
android:layout_above="@+id/linearLayout">
|
||
|
|
</ListView>
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
android:layout_width="fill_parent"
|
||
|
|
android:layout_height="fill_parent"></RelativeLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="fill_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_alignParentBottom="true"
|
||
|
|
android:layout_alignParentLeft="true"
|
||
|
|
android:layout_alignParentStart="true"
|
||
|
|
android:id="@+id/linearLayout">
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@+id/newMessage"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_alignParentBottom="true"
|
||
|
|
android:layout_alignParentLeft="true"
|
||
|
|
android:layout_alignParentStart="true"
|
||
|
|
android:layout_toLeftOf="@+id/sendButton"
|
||
|
|
android:ems="10"
|
||
|
|
android:inputType="textMultiLine"
|
||
|
|
android:layout_weight="1" />
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/sendButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_alignBottom="@+id/newMessage"
|
||
|
|
android:layout_alignParentEnd="true"
|
||
|
|
android:layout_alignParentRight="true"
|
||
|
|
android:text="Send" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</RelativeLayout><!-- From: file:/C:/Users/ezivkoc/AndroidStudioProjects/ZEPchat/app/src/main/res/layout/activity_messaging.xml -->
|