| 14792 |
manas |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
android:id="@+id/progres"
|
|
|
4 |
android:layout_width="fill_parent"
|
|
|
5 |
android:layout_height="fill_parent"
|
|
|
6 |
android:gravity="center"
|
|
|
7 |
>
|
|
|
8 |
<ProgressBar
|
|
|
9 |
android:indeterminate="true"
|
|
|
10 |
style="?android:attr/progressBarStyleLarge"
|
|
|
11 |
android:layout_width="wrap_content"
|
|
|
12 |
android:layout_height="wrap_content"
|
|
|
13 |
android:layout_centerInParent="true"
|
|
|
14 |
android:indeterminateDrawable="@drawable/greenprogressdialog"
|
|
|
15 |
/>
|
|
|
16 |
|
|
|
17 |
<Button
|
|
|
18 |
android:id="@+id/checkSplashInternet"
|
|
|
19 |
android:visibility="gone"
|
|
|
20 |
android:layout_width="match_parent"
|
|
|
21 |
android:layout_height="match_parent" />
|
|
|
22 |
</RelativeLayout>
|
|
|
23 |
|
|
|
24 |
<!--
|
|
|
25 |
|
|
|
26 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
27 |
android:layout_width="wrap_content"
|
|
|
28 |
android:layout_height="wrap_content"
|
|
|
29 |
android:layout_gravity="center"
|
|
|
30 |
android:background="@android:color/transparent" >
|
|
|
31 |
|
|
|
32 |
<ProgressBar
|
|
|
33 |
android:id="@+id/progressBar1"
|
|
|
34 |
android:layout_width="wrap_content"
|
|
|
35 |
android:layout_height="wrap_content"
|
|
|
36 |
android:layout_centerInParent="true" />
|
|
|
37 |
|
|
|
38 |
|
|
|
39 |
</RelativeLayout>
|
|
|
40 |
-->
|