16 lines
493 B
XML
16 lines
493 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/imageviewLoading"
|
||
|
android:src="@drawable/loading"
|
||
|
android:layout_width="50dp"
|
||
|
android:layout_height="50dp"
|
||
|
android:adjustViewBounds="true"
|
||
|
android:layout_centerInParent="true">
|
||
|
</ImageView>
|
||
|
|
||
|
</RelativeLayout>
|