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

37 lines
1.4 KiB
XML
Raw Permalink Normal View History

2023-08-11 09:50:31 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:gravity="center_horizontal"
android:paddingHorizontal="50dp"
2023-08-28 09:36:13 +00:00
android:layout_marginTop="70dp"
android:layout_marginBottom="30dp">
2023-08-11 09:50:31 +00:00
<ImageView
android:id="@+id/image_view"
android:src="@drawable/icon_shops"
android:layout_width="54dp"
android:layout_height="52dp"
/>
<TextView
android:id="@+id/title_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="Not getting the right eggs from tasks?"
android:layout_marginTop="@dimen/spacing_medium"
2023-08-21 10:51:21 +00:00
android:layout_marginBottom="4dp"
2023-08-11 09:50:31 +00:00
android:gravity="center_horizontal"
style="@style/SubHeader1"/>
<TextView
android:id="@+id/description_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="Check out the Market to buy just the things you need!"
style="@style/Body2"
android:gravity="center_horizontal"
android:textColor="@color/text_ternary"
2023-08-21 09:36:20 +00:00
android:maxWidth="300dp"
2023-08-11 09:50:31 +00:00
android:layout_marginTop="2dp"/>
</LinearLayout>