habitica-android/Habitica/res/layout/activity_maintenance.xml

33 lines
1.3 KiB
XML
Raw Normal View History

<?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"/>
2021-06-07 14:09:57 +00:00
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="180dp"
android:scaleType="centerInside"/>
2021-02-23 10:49:59 +00:00
<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>