summaryrefslogtreecommitdiffstats
path: root/res/layout/app_msg.xml
blob: 8767a0f3b6d220a0ca9335209826ac4ecbd21a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:minHeight="48dp"
    android:orientation="vertical" >

    <TextView
        android:id="@android:id/message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="8dp"
        android:textColor="@color/app_msg_text_color"
        android:textIsSelectable="false"
        android:textSize="14sp"
        android:textStyle="bold" />

</LinearLayout>