<?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="match_parent"
    android:background="@drawable/kf5_list_item_selected_bg"
    android:orientation="vertical"
>

    <LinearLayout android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:orientation="horizontal"
                  android:padding="@dimen/kf5_dimen_12dp">

        <TextView
            android:id="@+id/kf5_check_item_tv"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_weight="1"
            android:textSize="@dimen/kf5_text_size_18"
        />
        <ImageView
            android:id="@+id/kf5_check_item_img"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:src="@drawable/kf5_rating_check"/>
    </LinearLayout>

    <View android:layout_width="match_parent"
          android:layout_height="@dimen/kf5_line_1dp"
          android:background="@color/kf5_line_deliver_color"/>

</LinearLayout>