mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 17:33:22 +00:00
19 lines
775 B
XML
19 lines
775 B
XML
|
|
<?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"
|
||
|
|
android:background="@drawable/layout_rounded_bg_gray_700"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:layout_marginBottom="4dp">
|
||
|
|
|
||
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
||
|
|
android:id="@+id/imageView"
|
||
|
|
android:layout_width="@dimen/shopitem_image_size"
|
||
|
|
android:layout_height="@dimen/shopitem_image_size"
|
||
|
|
android:layout_marginRight="8dp"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/titleTextView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginRight="16dp"/>
|
||
|
|
</LinearLayout>
|