summaryrefslogtreecommitdiffstats
path: root/res/layout/status_card_inner_content.xml
blob: 82cdc50b140f021cdcb612f7fcc0a7ea73de0f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        tools:text="Cards are awesome!!"
        android:id="@+id/status_card_status_text"
        style="@style/simple_message_card_inner_body_text"
        android:layout_marginTop="5dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</LinearLayout>