mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
20 lines
713 B
XML
20 lines
713 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:background="@drawable/gradient"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:adjustViewBounds="true"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/scummvm_big" />
|
|
<ProgressBar android:id="@+id/progress"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="300dip"
|
|
android:layout_height="wrap_content"
|
|
android:padding="20dip"/>
|
|
</LinearLayout>
|