summaryrefslogtreecommitdiffstats
path: root/res/layout/simple_message_card_inner_content.xml
diff options
context:
space:
mode:
authorRaj Yengisetty <rajesh@cyngn.com>2015-07-27 14:52:21 -0700
committerRaj Yengisetty <rajesh@cyngn.com>2015-07-27 14:52:21 -0700
commit8847eb7a1ddb0b19c0c79de6d867444a68654874 (patch)
tree26b692977e92d5821165a295e08d8d081d05f18d /res/layout/simple_message_card_inner_content.xml
parent8d355bd41dcb91c7bb1da5a31755381b49fa663e (diff)
downloadandroid_packages_apps_Trebuchet-staging/cmhome.tar.gz
android_packages_apps_Trebuchet-staging/cmhome.tar.bz2
android_packages_apps_Trebuchet-staging/cmhome.zip
Move CMHome into Trebuchetstaging/cmhome
Change-Id: I781d10319d183cfb6acca5926ebf64920caf570e
Diffstat (limited to 'res/layout/simple_message_card_inner_content.xml')
-rw-r--r--res/layout/simple_message_card_inner_content.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/res/layout/simple_message_card_inner_content.xml b/res/layout/simple_message_card_inner_content.xml
new file mode 100644
index 000000000..c2b43ed6b
--- /dev/null
+++ b/res/layout/simple_message_card_inner_content.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:orientation="vertical"
+ android:gravity="top"
+ style="@style/card"
+ android:layout_margin="15dp"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <TextView
+ tools:text="Testing Title"
+ android:id="@+id/simple_message_card_title"
+ style="@style/simple_message_card_inner_title_text"
+ android:lines="1"
+ android:ellipsize="end"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"/>
+
+ <TextView
+ tools:text="This is an example message for testing purposes."
+ android:id="@+id/simple_message_card_text"
+ style="@style/simple_message_card_inner_body_text"
+ android:layout_marginTop="5dp"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"/>
+</LinearLayout> \ No newline at end of file