dialog_progressbar_can_cancel.xml
2.0 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/loadRootView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/dialog_internet_gray_bg"
android:orientation="vertical"
android:paddingBottom="8dp"
android:paddingTop="8dp" >
<TextView
android:id="@+id/back"
android:layout_width="40dp"
android:layout_height="40dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/dialog_internet_gray_bg"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="8dp"
android:paddingTop="8dp" >
<ImageView
android:id="@+id/progress_bar"
android:layout_width="40dp"
android:layout_height="23.8dp"
android:contentDescription="@drawable/load_anim"
android:scaleType="fitEnd"
android:src="@drawable/load_anim" />
<TextView
android:layout_width="70dp"
android:layout_height="2dp"
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:background="@color/gray" />
<TextView
android:id="@+id/msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/connect_internet"
android:textColor="@color/gray"
android:textSize="15sp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>