aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_long_task.xml
blob: 769144e78ab3874740665a01e8b6ad5c1ce843a5 (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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/black" >
    
	<ProgressBar
	    android:id="@+id/progbar"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:layout_centerHorizontal="true"
	    android:layout_centerVertical="true" />
	
	<TextView
	    android:id="@+id/txt_msg"
        android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:layout_centerHorizontal="true"
	    android:layout_centerVertical="true"
	    android:layout_below="@id/progbar"
	    android:padding="10dp"
	    android:textColor="@color/ThemeLight" />
    
    
</RelativeLayout>