mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
33 lines
1.4 KiB
XML
33 lines
1.4 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"/>
|
||
|
|
<com.github.data5tream.emojilib.EmojiTextView
|
||
|
|
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>
|