summaryrefslogtreecommitdiffstats
path: root/res/layout/simple_message_card_inner_content.xml
blob: c2b43ed6bb574f5a2336716d42ed92951d89558a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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>