habitica-android/Habitica/res/layout/activity_maintenance.xml
2021-06-07 16:09:57 +02:00

33 lines
No EOL
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_margin="16dp">
<TextView
android:id="@+id/titleTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_marginTop="8dp"
style="@style/CardTitle"/>
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="180dp"
android:scaleType="centerInside"/>
<TextView
android:id="@+id/descriptionTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/playStoreButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/open_in_store"/>
</LinearLayout>
</ScrollView>