Mindustry/android/res/layout/donations_activity.xml

32 lines
1.1 KiB
XML
Raw Normal View History

2017-12-12 11:48:37 +07:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2017-12-12 13:38:24 +07:00
android:orientation="vertical"
android:background="#000">
2017-12-12 11:48:37 +07:00
2017-12-12 13:38:24 +07:00
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="top"
android:adjustViewBounds="false"
android:contentDescription="background"
android:cropToPadding="false"
android:scaleType="centerCrop"
android:src="@drawable/background" />
<LinearLayout
2017-12-12 11:48:37 +07:00
android:id="@+id/donations_activity_container"
android:layout_width="match_parent"
2017-12-12 13:38:24 +07:00
android:layout_height="match_parent"
2017-12-12 11:48:37 +07:00
android:orientation="vertical">
2017-12-12 13:38:24 +07:00
</LinearLayout>
</RelativeLayout>
2017-12-12 11:48:37 +07:00
</LinearLayout>