blob: db03ed20311ce16f4154c323832e1214d8bbddd0 [file] [log] [blame]
Jim Millerb0da1e72013-10-01 16:55:19 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2013, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License")
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10** http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
20<!-- This is a view that shows general status information in Keyguard. -->
Lucas Dupin957e50c2017-10-10 11:23:27 -070021<com.android.keyguard.KeyguardSliceView
Jim Millerb0da1e72013-10-01 16:55:19 -070022 xmlns:android="http://schemas.android.com/apk/res/android"
Lucas Dupin957e50c2017-10-10 11:23:27 -070023 android:layout_marginStart="16dp"
24 android:layout_marginEnd="16dp"
Lucas Dupin4603fe22018-03-08 16:51:16 -080025 android:layout_width="match_parent"
Jim Millerb0da1e72013-10-01 16:55:19 -070026 android:layout_height="wrap_content"
Lucas Dupin957e50c2017-10-10 11:23:27 -070027 android:layout_gravity="center_horizontal"
Lucas Dupin957e50c2017-10-10 11:23:27 -070028 android:clipToPadding="false"
29 android:orientation="vertical"
30 android:layout_centerHorizontal="true">
Lucas Dupin3d7ccaf2018-04-02 21:19:23 -070031 <com.android.systemui.statusbar.AlphaOptimizedTextView
32 android:id="@+id/title"
Lucas Dupin957e50c2017-10-10 11:23:27 -070033 android:layout_width="match_parent"
34 android:layout_height="wrap_content"
Lucas Dupin3d7ccaf2018-04-02 21:19:23 -070035 android:layout_marginBottom="@dimen/widget_title_bottom_margin"
Lucas Dupin2a3c3e32018-01-05 17:02:43 -080036 android:paddingStart="64dp"
37 android:paddingEnd="64dp"
Lucas Dupin3d7ccaf2018-04-02 21:19:23 -070038 android:visibility="gone"
Lucas Dupinf8e274c2018-02-22 17:01:55 -080039 android:textColor="?attr/wallpaperTextColor"
Lucas Dupin6bd86012017-12-05 17:58:57 -080040 android:theme="@style/TextAppearance.Keyguard"
Lucas Dupin957e50c2017-10-10 11:23:27 -070041 />
Lucas Dupin4603fe22018-03-08 16:51:16 -080042 <view class="com.android.keyguard.KeyguardSliceView$Row"
43 android:id="@+id/row"
Lucas Dupin957e50c2017-10-10 11:23:27 -070044 android:layout_width="match_parent"
45 android:layout_height="wrap_content"
Lucas Dupin6bd86012017-12-05 17:58:57 -080046 android:orientation="horizontal"
Lucas Dupin957e50c2017-10-10 11:23:27 -070047 android:gravity="center"
Lucas Dupin957e50c2017-10-10 11:23:27 -070048 />
49</com.android.keyguard.KeyguardSliceView>