<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2018 The Android Open Source Project
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/notification_container"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="?android:attr/selectableItemBackground"
    android:nextFocusLeft="@id/notification_container"
    android:nextFocusRight="@id/notification_container"
    android:clickable="true"
    android:focusable="true"
    android:orientation="horizontal"
    android:paddingBottom="@dimen/notification_panel_item_padding_bottom"
    android:paddingEnd="@dimen/notification_panel_item_padding_end"
    android:paddingStart="@dimen/notification_panel_item_padding_start"
    android:paddingTop="@dimen/notification_panel_item_padding_top">

    <ImageView
        android:id="@+id/notification_icon"
        android:layout_width="@dimen/notification_panel_item_icon_size"
        android:layout_height="@dimen/notification_panel_item_icon_size"
        android:layout_gravity="center_vertical"
        android:layout_marginEnd="@dimen/notification_panel_item_icon_margin_end"
        android:tint="@color/notification_icon_tint" />

    <LinearLayout
        android:layout_width="@dimen/notification_panel_item_text_width"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:orientation="vertical">

        <TextView
            android:id="@+id/notification_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/notification_panel_item_text_margin_bottom"
            android:ellipsize="end"
            android:fontFamily="sans-serif-condensed"
            android:maxLines="1"
            android:textColor="@color/primary_text_color"
            android:textSize="@dimen/notification_panel_item_primary_text_size" />

        <TextView
            android:id="@+id/notification_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:ellipsize="end"
            android:fontFamily="sans-serif-condensed"
            android:maxLines="1"
            android:textColor="@color/secondary_text_color"
            android:textSize="@dimen/notification_panel_item_secondary_text_size" />
    </LinearLayout>
</LinearLayout>