aboutsummaryrefslogtreecommitdiff
path: root/res/layout/chat.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-04-19 13:42:57 -0700
committerScott Jackson <daneren2005@gmail.com>2014-04-19 13:42:57 -0700
commitc1fd0b3fb0103d687f5f3a1f5fb26038b3b12c6b (patch)
tree1095af9eba10ce658a3cb2835d629eeaff7cce96 /res/layout/chat.xml
parent2afc4b04e4774f5a7b8ce4cf5b907c0d2e8fbe98 (diff)
downloaddsub-c1fd0b3fb0103d687f5f3a1f5fb26038b3b12c6b.tar.gz
dsub-c1fd0b3fb0103d687f5f3a1f5fb26038b3b12c6b.tar.bz2
dsub-c1fd0b3fb0103d687f5f3a1f5fb26038b3b12c6b.zip
Fix color bar being under server message
Diffstat (limited to 'res/layout/chat.xml')
-rw-r--r--res/layout/chat.xml82
1 files changed, 41 insertions, 41 deletions
diff --git a/res/layout/chat.xml b/res/layout/chat.xml
index f2c1c3fd..a62cfa65 100644
--- a/res/layout/chat.xml
+++ b/res/layout/chat.xml
@@ -1,53 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/chat_layout"
+<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/refresh_layout"
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
+ android:layout_height="fill_parent">
- <include layout="@layout/tab_progress" />
-
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/refresh_layout"
+ <LinearLayout
+ android:id="@+id/chat_layout"
android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1.0">
+ android:layout_height="fill_parent"
+ android:orientation="vertical" >
+
+ <include layout="@layout/tab_progress" />
<ListView
android:id="@+id/chat_entries"
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"
android:textFilterEnabled="true" />
- </android.support.v4.widget.SwipeRefreshLayout>
-
- <LinearLayout
- android:layout_height="4dip"
- android:layout_width="fill_parent"
- android:layout_marginTop="4dip"/>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="bottom" >
-
- <EditText
- android:id="@+id/chat_edittext"
- android:layout_width="0dip"
- android:layout_height="40dip"
- android:layout_weight="1"
- android:autoLink="all"
- android:hint="@string/chat.send_a_message"
- android:inputType="textEmailAddress|textMultiLine"
- android:linksClickable="true"
- android:paddingBottom="10dip"
- android:paddingTop="10dip" />
-
- <ImageButton
- android:id="@+id/chat_send"
- android:layout_width="60dip"
- android:layout_height="40dip"
- android:src="?attr/chat_send" />
+ <LinearLayout
+ android:layout_height="4dip"
+ android:layout_width="fill_parent"
+ android:layout_marginTop="4dip"/>
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:gravity="bottom" >
+
+ <EditText
+ android:id="@+id/chat_edittext"
+ android:layout_width="0dip"
+ android:layout_height="40dip"
+ android:layout_weight="1"
+ android:autoLink="all"
+ android:hint="@string/chat.send_a_message"
+ android:inputType="textEmailAddress|textMultiLine"
+ android:linksClickable="true"
+ android:paddingBottom="10dip"
+ android:paddingTop="10dip" />
+
+ <ImageButton
+ android:id="@+id/chat_send"
+ android:layout_width="60dip"
+ android:layout_height="40dip"
+ android:src="?attr/chat_send" />
+
+ </LinearLayout>
</LinearLayout>
-</LinearLayout> \ No newline at end of file
+</android.support.v4.widget.SwipeRefreshLayout> \ No newline at end of file