105 lines
2.9 KiB
XML
105 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="16dp"
|
|
android:background="@color/bg"
|
|
android:elevation="2dp"
|
|
android:orientation="vertical"
|
|
tools:ignore="MissingPrefix"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
>
|
|
|
|
<android.support.v4.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/rect_white"
|
|
android:elevation="2dp"
|
|
android:orientation="vertical"
|
|
tools:ignore="MissingPrefix">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/ivImage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvOnSale"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top|left"
|
|
android:background="@color/colorPrimary"
|
|
android:textColor="#ffffff"
|
|
android:text="SALE!"
|
|
fontPath="@string/font_medium"
|
|
android:padding="8dp"
|
|
/>
|
|
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tvTitle"
|
|
fontPath="@string/font_medium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:gravity="left"
|
|
android:textColor="@color/text"
|
|
android:textSize="18sp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvDescription"
|
|
fontPath="@string/font_regular"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginRight="16dp"
|
|
android:gravity="left"
|
|
android:maxLines="2"
|
|
android:lineSpacingMultiplier="1.2"
|
|
android:textColor="@color/text_black_5"
|
|
android:textSize="14sp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvCallToAction"
|
|
fontPath="@string/font_regular"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right"
|
|
android:layout_marginRight="0dp"
|
|
android:layout_marginBottom="0dp"
|
|
android:gravity="left"
|
|
android:padding="16dp"
|
|
android:textColor="#1c5c9a"
|
|
android:textSize="14sp"/>
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</android.support.v4.widget.NestedScrollView>
|
|
</LinearLayout>
|
|
|
|
|