2020-06-10 14:33:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_marginTop="@dimen/spacing_small"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_large">
|
2020-06-16 09:46:44 +00:00
|
|
|
<FrameLayout
|
2020-06-10 14:33:17 +00:00
|
|
|
android:layout_width="80dp"
|
|
|
|
|
android:layout_height="80dp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_window"
|
2020-06-16 09:46:44 +00:00
|
|
|
android:layout_marginEnd="@dimen/spacing_large">
|
2022-05-12 11:32:36 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.PixelArtView
|
2020-06-16 09:46:44 +00:00
|
|
|
android:id="@+id/egg_view"
|
|
|
|
|
android:layout_width="@dimen/gear_image_size"
|
|
|
|
|
android:layout_height="@dimen/gear_image_size"
|
|
|
|
|
android:layout_gravity="center"/>
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
<FrameLayout
|
2020-06-10 14:33:17 +00:00
|
|
|
android:layout_width="80dp"
|
|
|
|
|
android:layout_height="80dp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_window">
|
2022-05-12 11:32:36 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.PixelArtView
|
2020-06-16 09:46:44 +00:00
|
|
|
android:id="@+id/hatchingPotion_view"
|
|
|
|
|
android:layout_width="@dimen/gear_image_size"
|
|
|
|
|
android:layout_height="@dimen/gear_image_size"
|
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
</FrameLayout>
|
2020-06-10 14:33:17 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body2"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
2020-06-10 14:33:17 +00:00
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:text="@string/first_drop_explanation1"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_medium"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body1"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2020-06-10 14:33:17 +00:00
|
|
|
android:text="@string/first_drop_explanation2"
|
|
|
|
|
android:gravity="center_horizontal"/>
|
|
|
|
|
</LinearLayout>
|