aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_show_status.xml
blob: 14910154c490082d1dd9128443f3118dcb89490f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/black"
    android:padding="15dp"
    tools:context=".ShowStatusActivity" >

    <TextView
        android:id="@+id/txt_status"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="@color/black"
        android:textIsSelectable="true"
        android:textColor="@color/ThemeLight" />
    
</RelativeLayout>