blob: 86280e0b6d3e718b53bb09dd6ff6892967e79c14 [file] [log] [blame]
Tony Wickham9438ed42017-01-20 09:38:25 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 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
18<com.android.launcher3.notification.NotificationFooterLayout
19 android:layout_width="match_parent"
20 android:layout_height="match_parent"
Tony Wickham9438ed42017-01-20 09:38:25 -080021 xmlns:android="http://schemas.android.com/apk/res/android"
Tony Wickham9438ed42017-01-20 09:38:25 -080022 android:elevation="@dimen/notification_elevation"
Tony Wickham9407d4a2017-02-24 15:08:13 -080023 android:clipChildren="false"
24 android:layout_gravity="center_vertical"
Tony Wickham90038eb2017-06-06 15:42:32 -070025 android:background="?attr/popupColorPrimary">
Tony Wickham9438ed42017-01-20 09:38:25 -080026
27 <LinearLayout
28 android:id="@+id/icon_row"
29 android:layout_width="match_parent"
30 android:layout_height="match_parent"
31 android:orientation="horizontal"
Tony Wickham9407d4a2017-02-24 15:08:13 -080032 android:gravity="end|center_vertical"
Tony Wickham9438ed42017-01-20 09:38:25 -080033 android:padding="@dimen/notification_footer_icon_row_padding"
34 android:clipToPadding="false"
35 android:clipChildren="false"/>
36
Tony Wickham9407d4a2017-02-24 15:08:13 -080037 <View
38 android:id="@+id/overflow"
39 android:layout_width="@dimen/horizontal_ellipsis_size"
40 android:layout_height="@dimen/horizontal_ellipsis_size"
41 android:background="@drawable/horizontal_ellipsis"
42 android:layout_marginStart="@dimen/horizontal_ellipsis_offset"
43 android:layout_gravity="start|center_vertical" />
44
Tony Wickham9438ed42017-01-20 09:38:25 -080045</com.android.launcher3.notification.NotificationFooterLayout>
46