aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/chat_item.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-06-22 18:16:31 -0700
committerScott Jackson <daneren2005@gmail.com>2015-06-22 18:16:31 -0700
commitec59370dd453c2438d194610dbba2b1435ba35f8 (patch)
tree3fc6ba3132a15ef541f17d3ddd85c79cee710118 /app/src/main/res/layout/chat_item.xml
parent44faeb4cc59d69df0c633d04c76d3a94c4fac2aa (diff)
downloaddsub-ec59370dd453c2438d194610dbba2b1435ba35f8.tar.gz
dsub-ec59370dd453c2438d194610dbba2b1435ba35f8.tar.bz2
dsub-ec59370dd453c2438d194610dbba2b1435ba35f8.zip
Theme update
Diffstat (limited to 'app/src/main/res/layout/chat_item.xml')
-rw-r--r--app/src/main/res/layout/chat_item.xml11
1 files changed, 7 insertions, 4 deletions
diff --git a/app/src/main/res/layout/chat_item.xml b/app/src/main/res/layout/chat_item.xml
index f31f7988..bf5d81ca 100644
--- a/app/src/main/res/layout/chat_item.xml
+++ b/app/src/main/res/layout/chat_item.xml
@@ -2,7 +2,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
- android:layout_height="wrap_content">
+ android:layout_height="wrap_content"
+ android:background="?attr/selectableItemBackground">
<github.daneren2005.dsub.view.RecyclingImageView
android:id="@+id/chat_avatar"
@@ -34,7 +35,7 @@
android:singleLine="true"
android:text="User"
android:textAppearance="?android:attr/textAppearanceLarge"
- android:textColor="?android:textColorSecondary"/>
+ android:textColor="?android:textColorPrimary"/>
<TextView
android:id="@+id/chat_time"
@@ -43,7 +44,8 @@
android:layout_marginLeft="6dip"
android:singleLine="true"
android:text="00:00"
- android:textAppearance="?android:attr/textAppearanceSmall" />
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:textColor="?android:textColorSecondary"/>
</LinearLayout>
<TextView
@@ -56,6 +58,7 @@
android:linksClickable="true"
android:singleLine="false"
android:text="Message Text Goes Here"
- android:textAppearance="?android:attr/textAppearanceMedium" />
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textColor="?android:textColorSecondary"/>
</LinearLayout>
</LinearLayout> \ No newline at end of file