Download this file

item_app.xml    23 lines (20 with data), 786 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="460dp"
android:layout_height="150dp" >
<ImageView
android:id="@+id/promoAppImage"
android:layout_width="460dp"
android:layout_height="150dp"
android:layout_centerInParent="true"
android:scaleType="fitCenter"
android:visibility="invisible" />
<ProgressBar
android:id="@+id/appProgress"
style="android:attr/progressBarStyleInverse"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:indeterminate="true" />
</RelativeLayout>