blob: f699fce270438dc2bf7ae1a9bfe8b4c89563b5ae [file] [log] [blame]
Jorim Jaggid4a57442014-04-10 02:45:55 +02001<!--
2 ~ Copyright (C) 2014 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
Jorim Jaggic5dc0d02014-04-15 15:42:55 +020017<!-- Extends FrameLayout -->
18<com.android.systemui.statusbar.NotificationOverflowContainer
Jorim Jaggid4a57442014-04-10 02:45:55 +020019 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:layout_width="match_parent"
Jorim Jaggi069cd032014-05-15 03:09:01 +020021 android:layout_height="@dimen/notification_summary_height"
Jorim Jaggife40f7d2014-04-28 15:20:04 +020022 android:focusable="true"
23 android:clickable="true"
Jorim Jaggid4a57442014-04-10 02:45:55 +020024 >
Jorim Jaggia8b48e12014-05-19 20:26:46 +020025 <com.android.systemui.statusbar.NotificationBackgroundView android:id="@+id/backgroundNormal"
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
28 />
29 <com.android.systemui.statusbar.NotificationBackgroundView android:id="@+id/backgroundDimmed"
30 android:layout_width="match_parent"
31 android:layout_height="match_parent"
32 />
Jorim Jaggi13285692014-08-06 01:35:21 +020033
Jorim Jaggi1f98c622015-07-20 11:43:27 -070034 <com.android.keyguard.AlphaOptimizedLinearLayout
Jorim Jaggi4e857f42014-11-17 19:14:04 +010035 android:id="@+id/content"
Jorim Jaggi13285692014-08-06 01:35:21 +020036 android:layout_width="match_parent"
37 android:layout_height="match_parent">
38 <TextView
39 android:id="@+id/more_text"
40 android:layout_width="32dp"
41 android:layout_height="32dp"
Jorim Jaggi6b58ab52014-08-29 16:37:08 +020042 android:layout_marginStart="16dp"
43 android:layout_marginEnd="12dp"
Jorim Jaggi13285692014-08-06 01:35:21 +020044 android:layout_gravity="center_vertical"
45 android:background="@drawable/keyguard_overflow_number_background"
46 android:gravity="center"
47 android:textColor="#ff686868"
48 android:textStyle="bold"
49 android:textSize="14dp"
50 />
51 <com.android.systemui.statusbar.StatusBarIconView
52 android:id="@+id/more_icon_overflow"
53 android:layout_width="@dimen/status_bar_icon_size"
54 android:layout_height="match_parent"
55 android:src="@drawable/stat_notify_more"
56 android:tint="@color/keyguard_overflow_content_color"
57 android:visibility="gone"
58 />
59 <com.android.systemui.statusbar.NotificationOverflowIconsView
60 android:id="@+id/overflow_icons_view"
61 android:layout_gravity="center_vertical"
62 android:layout_marginEnd="8dp"
63 android:layout_width="match_parent"
64 android:layout_height="wrap_content"
65 />
Jorim Jaggi1f98c622015-07-20 11:43:27 -070066 </com.android.keyguard.AlphaOptimizedLinearLayout>
Selim Cinekf54090e2014-06-17 17:24:51 -070067
Jorim Jaggic5dc0d02014-04-15 15:42:55 +020068</com.android.systemui.statusbar.NotificationOverflowContainer>