<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2020 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.
  -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:theme="@android:style/Theme.DeviceDefault.DayNight"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <LinearLayout
        android:background="@drawable/people_space_tile_view_card"
        android:clipToOutline="true"
        android:id="@android:id/background"
        android:gravity="center"
        android:paddingHorizontal="16dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <ImageView
                android:id="@+id/person_icon"
                android:layout_width="@dimen/avatar_size_for_medium_empty"
                android:layout_height="@dimen/avatar_size_for_medium_empty" />
            <ImageView
                android:id="@+id/availability"
                android:layout_width="10dp"
                android:layout_height="10dp"
                android:gravity="top"
                android:layout_gravity="top"
                android:layout_marginStart="-2dp"
                android:background="@drawable/availability_dot_10dp" />
        </LinearLayout>
        <LinearLayout
            android:id="@+id/padding_before_availability"
            android:orientation="vertical"
            android:paddingStart="@dimen/availability_dot_shown_padding"
            android:gravity="top"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <TextView
                android:id="@+id/name"
                android:text="@string/empty_user_name"
                android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Notification.Title"
                android:textColor="?android:attr/textColorPrimary"
                android:textSize="@dimen/empty_name_text_size_for_medium"
                android:maxLines="1"
                android:ellipsize="end"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            <TextView
                android:id="@+id/last_interaction"
                android:text="@string/empty_status"
                android:textColor="?android:attr/textColorSecondary"
                android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Notification.Title"
                android:textSize="@dimen/content_text_size_for_medium"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:maxLines="3"
                android:ellipsize="end" />
        </LinearLayout>
    </LinearLayout>
</FrameLayout>