summaryrefslogtreecommitdiffstats
path: root/res/layout/dashclock_card_inner_content.xml
blob: 9c02ff9cf95ecb61e7750c56c0233cc74215b4d1 (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
28
29
30
31
32
33
34
<?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_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        tools:text="Gmail"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/dashclock_card_inner_title_text"
        style="@style/card.header_simple_title"
        android:textSize="20sp"
        />

    <TextView
        tools:text="42 new messages"
        android:id="@+id/dashclock_card_inner_status_text"
        style="@style/dashclock_card_inner_status_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <TextView
        tools:text="This is an expanded body message for testing purposes."
        android:id="@+id/dashclock_card_inner_body_text"
        style="@style/dashclock_card_inner_body_text"
        android:lines="4"
        android:ellipsize="end"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</LinearLayout>