Download this file

item_screenshot.xml    21 lines (18 with data), 764 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="150dp"
android:layout_height="250dp">
<ImageView
android:id="@+id/screenshotImage"
android:layout_width="225dp"
android:layout_height="375dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" android:scaleType="centerInside"/>
<ProgressBar
android:id="@+id/screenshotProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:indeterminate="true" />
</RelativeLayout>