blob: 1aeb52cdce69082a01ebfeba41076fc4afb8c317 [file] [log] [blame]
Mady Mellordea7ecf2018-12-10 15:47:40 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2018 The Android Open Source Project
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License
16 -->
17<com.android.systemui.bubbles.BubbleExpandedViewContainer
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_height="wrap_content"
20 android:layout_width="match_parent"
21 android:id="@+id/bubble_expanded_view">
22
Mady Mellordea7ecf2018-12-10 15:47:40 -080023 <View
24 android:id="@+id/pointer_view"
25 android:layout_width="@dimen/bubble_pointer_width"
26 android:layout_height="@dimen/bubble_pointer_height"
27 />
Mark Renouf89b1a4a2018-12-04 14:59:45 -050028
29 <TextView
30 android:id="@+id/bubble_content_header"
31 android:background="@drawable/bubble_expanded_header_bg"
32 android:textAppearance="@*android:style/TextAppearance.Material.Title"
33 android:textSize="18sp"
34 android:layout_width="match_parent"
35 android:layout_height="@dimen/bubble_expanded_header_height"
36 android:gravity="start|center_vertical"
37 android:singleLine="true"
38 android:paddingLeft="@dimen/bubble_expanded_header_horizontal_padding"
39 android:paddingRight="@dimen/bubble_expanded_header_horizontal_padding"
40 />
41
Mady Mellordea7ecf2018-12-10 15:47:40 -080042</com.android.systemui.bubbles.BubbleExpandedViewContainer>