2017-07-25 16:27:00 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-09-22 10:49:55 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2017-07-25 16:27:00 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-22 10:49:55 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_window"
|
2017-07-25 16:27:00 +00:00
|
|
|
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"
|
2017-09-22 10:49:55 +00:00
|
|
|
android:layout_marginRight="8dp"
|
2017-11-13 18:47:59 +00:00
|
|
|
android:scaleType="center"
|
|
|
|
|
app:actualImageScaleType="fitCenter"/>
|
2017-07-25 16:27:00 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginRight="16dp"/>
|
|
|
|
|
</LinearLayout>
|