blob: b9e39dae13dcb682562d6571e16d8e88c5b05a87 [file] [log] [blame]
Narayan Kamathb4bfa1b2019-03-15 16:54:53 +00001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright 2019, 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
Narayan Kamath05f010b2019-05-10 14:42:52 +010018<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"
Narayan Kamathb4bfa1b2019-03-15 16:54:53 +000019 xmlns:android="http://schemas.android.com/apk/res/android"
Narayan Kamath05f010b2019-05-10 14:42:52 +010020 android:theme="@style/Theme.SystemUI.MediaProjectionAlertDialog"
Narayan Kamathb4bfa1b2019-03-15 16:54:53 +000021 android:paddingStart="?android:attr/dialogPreferredPadding"
22 android:paddingEnd="?android:attr/dialogPreferredPadding"
Narayan Kamath05f010b2019-05-10 14:42:52 +010023 android:orientation="vertical">
Narayan Kamathb4bfa1b2019-03-15 16:54:53 +000024 <ImageView
25 android:id="@+id/dialog_icon"
26 android:src="@drawable/ic_media_projection_permission"
Narayan Kamath05f010b2019-05-10 14:42:52 +010027 android:layout_height="24dp"
28 android:layout_width="24dp"
29 android:layout_marginTop="18dp"
30 android:layout_marginBottom="12dp"
31 android:layout_gravity="center_horizontal" />
Narayan Kamathb4bfa1b2019-03-15 16:54:53 +000032 <TextView
33 android:id="@+id/dialog_title"
34 android:gravity="center"
35 android:layout_width="match_parent"
36 android:layout_height="wrap_content"
Narayan Kamath05f010b2019-05-10 14:42:52 +010037 android:textSize="20sp"
38 android:textColor="?android:attr/textColorPrimary"
Narayan Kamathb4bfa1b2019-03-15 16:54:53 +000039 android:textAppearance="@*android:style/TextAppearance.DeviceDefault.Title" />
Narayan Kamath05f010b2019-05-10 14:42:52 +010040</LinearLayout>