Tony Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 1 | <?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 Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 21 | xmlns:android="http://schemas.android.com/apk/res/android" |
Tony Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 22 | android:elevation="@dimen/notification_elevation" |
Tony Wickham | 9407d4a | 2017-02-24 15:08:13 -0800 | [diff] [blame] | 23 | android:clipChildren="false" |
| 24 | android:layout_gravity="center_vertical" |
Tony Wickham | 90038eb | 2017-06-06 15:42:32 -0700 | [diff] [blame] | 25 | android:background="?attr/popupColorPrimary"> |
Tony Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 26 | |
| 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 Wickham | 9407d4a | 2017-02-24 15:08:13 -0800 | [diff] [blame] | 32 | android:gravity="end|center_vertical" |
Tony Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 33 | android:padding="@dimen/notification_footer_icon_row_padding" |
| 34 | android:clipToPadding="false" |
| 35 | android:clipChildren="false"/> |
| 36 | |
Tony Wickham | 9407d4a | 2017-02-24 15:08:13 -0800 | [diff] [blame] | 37 | <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 Wickham | 9438ed4 | 2017-01-20 09:38:25 -0800 | [diff] [blame] | 45 | </com.android.launcher3.notification.NotificationFooterLayout> |
| 46 | |