1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright (C) 2021 The Android Open Source Project 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"); 5 ~ you may not use this file except in compliance with the License. 6 ~ You may obtain a copy of the License at 7 ~ 8 ~ http://www.apache.org/licenses/LICENSE-2.0 9 ~ 10 ~ Unless required by applicable law or agreed to in writing, software 11 ~ distributed under the License is distributed on an "AS IS" BASIS, 12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 ~ See the License for the specific language governing permissions and 14 ~ limitations under the License 15 --> 16 17<com.android.internal.widget.NotificationExpandButton 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 android:id="@+id/expand_button" 20 android:layout_width="wrap_content" 21 android:layout_height="wrap_content" 22 android:minHeight="@dimen/notification_header_height" 23 android:layout_gravity="top|end" 24 android:contentDescription="@string/expand_button_content_description_collapsed" 25 android:paddingHorizontal="16dp" 26 > 27 28 <LinearLayout 29 android:id="@+id/expand_button_pill" 30 android:layout_width="wrap_content" 31 android:layout_height="wrap_content" 32 android:minHeight="@dimen/notification_expand_button_pill_height" 33 android:orientation="horizontal" 34 android:background="@drawable/expand_button_pill_bg" 35 android:gravity="center_vertical" 36 android:layout_gravity="center_vertical" 37 android:duplicateParentState="true" 38 > 39 40 <TextView 41 android:id="@+id/expand_button_number" 42 android:layout_width="wrap_content" 43 android:layout_height="wrap_content" 44 android:minHeight="@dimen/notification_expand_button_pill_height" 45 android:textAppearance="@style/TextAppearance.DeviceDefault.Notification.Info" 46 android:gravity="center_vertical" 47 android:paddingStart="8dp" 48 android:visibility="gone" 49 /> 50 51 <ImageView 52 android:id="@+id/expand_button_icon" 53 android:layout_width="@dimen/notification_expand_button_pill_height" 54 android:layout_height="@dimen/notification_expand_button_pill_height" 55 android:padding="2dp" 56 android:scaleType="fitCenter" 57 android:importantForAccessibility="no" 58 /> 59 60 </LinearLayout> 61 62</com.android.internal.widget.NotificationExpandButton> 63