mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
64 lines
2.8 KiB
XML
64 lines
2.8 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
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">
|
||
|
|
<FrameLayout
|
||
|
|
android:layout_width="50dp"
|
||
|
|
android:layout_height="50dp"
|
||
|
|
android:background="@drawable/layout_rounded_bg_gray_700"
|
||
|
|
android:layout_marginEnd="@dimen/spacing_large">
|
||
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
||
|
|
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
|
||
|
|
android:layout_width="80dp"
|
||
|
|
android:layout_height="80dp"
|
||
|
|
android:background="@drawable/layout_rounded_bg_gray_700"
|
||
|
|
android:layout_marginEnd="@dimen/spacing_large">
|
||
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
||
|
|
android:id="@+id/pet_view"
|
||
|
|
android:layout_width="@dimen/gear_image_size"
|
||
|
|
android:layout_height="@dimen/gear_image_size"
|
||
|
|
android:alpha="0.1"
|
||
|
|
android:layout_gravity="center" />
|
||
|
|
</FrameLayout>
|
||
|
|
<FrameLayout
|
||
|
|
android:layout_width="50dp"
|
||
|
|
android:layout_height="50dp"
|
||
|
|
android:background="@drawable/layout_rounded_bg_gray_700">
|
||
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
||
|
|
android:id="@+id/hatchingPotion_view"
|
||
|
|
android:layout_width="@dimen/gear_image_size"
|
||
|
|
android:layout_height="@dimen/gear_image_size"
|
||
|
|
android:layout_gravity="center" />
|
||
|
|
</FrameLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/pet_title_view"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="@style/Subheader2"
|
||
|
|
android:textColor="@color/gray_100"
|
||
|
|
android:gravity="center_horizontal"
|
||
|
|
android:layout_marginBottom="@dimen/spacing_medium"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/description_view"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="@style/Body2"
|
||
|
|
android:textColor="@color/gray_200"
|
||
|
|
android:gravity="center_horizontal"
|
||
|
|
android:layout_marginBottom="@dimen/spacing_medium"/>
|
||
|
|
</LinearLayout>
|