blob: 9ea7be50adec9e6ca97323619b4ab16addfa83f8 [file] [log] [blame]
Selim Cinek83bc7832015-10-22 13:26:54 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2015 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
Rohan Shah20790b82018-07-02 17:21:04 -070018<com.android.systemui.statusbar.notification.row.HybridNotificationView
Selim Cinek83bc7832015-10-22 13:26:54 -070019 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:layout_width="match_parent"
Selim Cinek7b836392015-12-04 20:02:59 -080021 android:layout_height="wrap_content"
Adrian Roos6f6e1592017-05-02 16:22:53 -070022 android:gravity="bottom|start"
Jeff DeCewed36ea62022-06-15 21:08:58 +000023 android:paddingStart="@*android:dimen/notification_content_margin_start"
24 android:paddingEnd="12dp">
Selim Cinek83bc7832015-10-22 13:26:54 -070025 <TextView
26 android:id="@+id/notification_title"
27 android:layout_width="wrap_content"
28 android:layout_height="wrap_content"
Adrian Roos6f6e1592017-05-02 16:22:53 -070029 android:singleLine="true"
Jeff DeCewed36ea62022-06-15 21:08:58 +000030 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Notification.Title"
31 android:paddingEnd="4dp"
Selim Cinek83bc7832015-10-22 13:26:54 -070032 />
33 <TextView
34 android:id="@+id/notification_text"
Selim Cinek7b836392015-12-04 20:02:59 -080035 android:layout_width="match_parent"
Selim Cinek83bc7832015-10-22 13:26:54 -070036 android:layout_height="wrap_content"
Selim Cinek83bc7832015-10-22 13:26:54 -070037 android:singleLine="true"
Jeff DeCewed36ea62022-06-15 21:08:58 +000038 android:paddingEnd="4dp"
39 style="@*android:style/Widget.DeviceDefault.Notification.Text"
Adrian Roos6f6e1592017-05-02 16:22:53 -070040 />
Rohan Shah20790b82018-07-02 17:21:04 -070041</com.android.systemui.statusbar.notification.row.HybridNotificationView>