2014-01-24 09:50:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-26 02:27:55 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-01-24 09:50:18 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-07-09 19:45:03 +00:00
|
|
|
android:background="@color/secondarybackground" >
|
2014-01-26 02:27:55 +00:00
|
|
|
|
2014-01-24 09:50:18 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/textsend"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
2014-06-06 09:39:17 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
2014-07-08 09:41:19 +00:00
|
|
|
android:background="@color/primarybackground" >
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/textinput"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@+id/textSendButton"
|
2014-07-08 09:41:19 +00:00
|
|
|
android:background="@color/primarybackground"
|
2014-01-26 02:27:55 +00:00
|
|
|
android:ems="10"
|
2014-05-07 11:19:50 +00:00
|
|
|
android:inputType="textShortMessage|textMultiLine|textCapSentences"
|
2014-06-06 09:39:17 +00:00
|
|
|
android:minHeight="48dp"
|
|
|
|
android:minLines="1"
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
2014-07-08 09:41:19 +00:00
|
|
|
android:paddingTop="12dp"
|
|
|
|
android:textColor="@color/primarytext">
|
2014-06-06 09:39:17 +00:00
|
|
|
|
|
|
|
<requestFocus />
|
2014-01-26 02:27:55 +00:00
|
|
|
</EditText>
|
2014-01-24 09:50:18 +00:00
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/textSendButton"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:src="@drawable/ic_action_send_now" />
|
2014-01-24 09:50:18 +00:00
|
|
|
</RelativeLayout>
|
2014-01-26 02:27:55 +00:00
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/messages_view"
|
2014-01-24 09:50:18 +00:00
|
|
|
android:layout_width="fill_parent"
|
2014-01-26 02:27:55 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-01-24 09:50:18 +00:00
|
|
|
android:layout_above="@+id/textsend"
|
|
|
|
android:layout_alignParentLeft="true"
|
2014-07-09 19:45:03 +00:00
|
|
|
android:layout_below="@+id/snackbar"
|
2014-07-08 09:41:19 +00:00
|
|
|
android:background="@color/secondarybackground"
|
2014-01-26 02:27:55 +00:00
|
|
|
android:divider="@null"
|
2014-02-28 02:22:05 +00:00
|
|
|
android:dividerHeight="0dp"
|
|
|
|
android:listSelector="@android:color/transparent"
|
2014-06-06 09:39:17 +00:00
|
|
|
android:stackFromBottom="true"
|
2014-06-10 15:01:19 +00:00
|
|
|
android:transcriptMode="normal"
|
2014-06-06 09:39:17 +00:00
|
|
|
tools:listitem="@layout/message_sent" >
|
2014-01-26 02:27:55 +00:00
|
|
|
</ListView>
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-07-09 19:45:03 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/snackbar"
|
2014-03-03 04:01:02 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-09 19:45:03 +00:00
|
|
|
android:minHeight="48dp"
|
|
|
|
android:background="@color/darkbackground"
|
|
|
|
android:visibility="gone">
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-07-09 19:45:03 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/snackbar_message"
|
|
|
|
android:layout_width="wrap_content"
|
2014-02-16 15:32:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-07-09 19:45:03 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textColor="@color/ondarktext"
|
|
|
|
android:paddingLeft="24dp"/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/snackbar_action"
|
|
|
|
android:layout_width="wrap_content"
|
2014-02-16 15:32:15 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-07-09 19:45:03 +00:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textColor="@color/ondarktext"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:paddingLeft="24dp"
|
|
|
|
android:paddingRight="24dp"
|
|
|
|
android:paddingTop="18dp"
|
|
|
|
android:paddingBottom="18dp"/>
|
|
|
|
</RelativeLayout>
|
2014-06-06 09:39:17 +00:00
|
|
|
|
2014-01-26 02:27:55 +00:00
|
|
|
</RelativeLayout>
|