2016-07-26 17:30:13 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="@dimen/section_leftright_padding">
|
|
|
|
|
|
2016-11-19 11:29:45 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
2016-07-26 17:30:13 +00:00
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_width="@dimen/shop_width"
|
|
|
|
|
android:layout_height="@dimen/shop_height"
|
|
|
|
|
android:linksClickable="true"
|
|
|
|
|
android:autoLink="web" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/descriptionView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="@dimen/section_leftright_padding"
|
|
|
|
|
android:layout_marginStart="@dimen/section_leftright_padding"/>
|
|
|
|
|
</LinearLayout>
|