mirror of
https://github.com/element-hq/element-android
synced 2024-12-23 01:31:24 +03:00
15 lines
514 B
XML
15 lines
514 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">
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/progressBar"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:layout_marginTop="@dimen/layout_vertical_margin_big"
|
||
|
android:indeterminate="true" />
|
||
|
|
||
|
</RelativeLayout>
|