<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <include
    android:id="@+id/collapse_notification"
    layout="@layout/collapse_notification"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    />
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    >
    <ImageView
      android:id="@+id/picture"
      android:layout_width="150dp"
      android:layout_height="150dp"/>
    <LinearLayout
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:orientation="vertical">
      <TextView
        android:id="@+id/title_product"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="this product in promotion"
        android:textSize="15sp"
        android:textStyle="bold"
        android:padding="10dp"
        />
      <TextView
        android:id="@+id/description_product"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum is simply dummy text of the printing and typesetting industry."
        style="@style/TextAppearance.Compat.Notification.Info"
        android:padding="5dp"/>
    </LinearLayout>
  </LinearLayout>
</LinearLayout>
