26 lines
880 B
XML
26 lines
880 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/loading_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical"
|
|
android:visibility="gone" >
|
|
|
|
<!--
|
|
<ProgressBar
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminateBehavior="repeat"
|
|
android:indeterminateDrawable="@drawable/progress_medium_white"
|
|
android:indeterminateDuration="3500"
|
|
android:indeterminateOnly="true"
|
|
android:mirrorForRtl="false" />
|
|
-->
|
|
|
|
<ProgressBar
|
|
style="?android:attr/progressBarStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout> |