| 21478 |
rajender |
1 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
2 |
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
|
|
|
3 |
android:layout_height="match_parent" tools:context=".SplashScreen"
|
|
|
4 |
android:background="@color/green_tobe_used"
|
|
|
5 |
>
|
|
|
6 |
|
|
|
7 |
|
|
|
8 |
<ImageView
|
|
|
9 |
android:id="@+id/splashscreenView"
|
|
|
10 |
android:src="@drawable/pmsplashnew"
|
|
|
11 |
android:layout_width="match_parent"
|
|
|
12 |
android:layout_height="match_parent"
|
|
|
13 |
android:background="@color/green_tobe_used"
|
|
|
14 |
android:layout_alignBottom="@+id/progressBar"
|
|
|
15 |
android:layout_alignParentLeft="true"
|
|
|
16 |
android:layout_alignParentStart="true" />
|
|
|
17 |
|
|
|
18 |
<ProgressBar
|
|
|
19 |
android:id="@+id/progressBar"
|
|
|
20 |
style="?android:attr/progressBarStyleLarge"
|
|
|
21 |
android:layout_width="wrap_content"
|
|
|
22 |
android:layout_height="wrap_content"
|
|
|
23 |
android:progress="50"
|
|
|
24 |
android:progressDrawable="@drawable/greenprogressdialog"
|
|
|
25 |
|
|
|
26 |
android:layout_marginBottom="145dp"
|
|
|
27 |
android:layout_alignParentBottom="true"
|
|
|
28 |
android:layout_centerHorizontal="true">
|
|
|
29 |
</ProgressBar>
|
|
|
30 |
</RelativeLayout>
|