mirror of https://github.com/BOINC/boinc.git
16 lines
584 B
XML
16 lines
584 B
XML
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/loading"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context=".MainActivity" >
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/progressBar1"
|
||
|
style="?android:attr/progressBarStyleLarge"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:layout_centerVertical="true" />
|
||
|
|
||
|
</RelativeLayout>
|