| 12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <ImageView
- android:id="@+id/imageView_gridView"
- android:layout_width="90dp"
- android:layout_height="90dp"
- android:layout_gravity="center_vertical"
- android:layout_margin="5dp"
- android:scaleType="centerCrop" />
- <ProgressBar
- android:id="@+id/ProgressBar"
- style="?android:attr/progressBarStyleSmall"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="42dp"
- android:layout_marginTop="42dp"
- android:visibility="gone"/>
- </FrameLayout>
|