blob: b154d46f162c57a8c82dd5fcb86609e02ceaceb4 [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"
25 android:layout_width="wrap_content"
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">
31 <TextView android:id="@+id/title"
32 android:layout_width="match_parent"
33 android:layout_height="wrap_content"
Lucas Dupin6bd86012017-12-05 17:58:57 -080034 android:layout_marginBottom="@dimen/widget_vertical_padding"
35 android:theme="@style/TextAppearance.Keyguard"
Lucas Dupin957e50c2017-10-10 11:23:27 -070036 />
Lucas Dupin6bd86012017-12-05 17:58:57 -080037 <LinearLayout android:id="@+id/row"
Lucas Dupin957e50c2017-10-10 11:23:27 -070038 android:layout_width="match_parent"
39 android:layout_height="wrap_content"
Lucas Dupin6bd86012017-12-05 17:58:57 -080040 android:orientation="horizontal"
Lucas Dupin957e50c2017-10-10 11:23:27 -070041 android:gravity="center"
Lucas Dupin957e50c2017-10-10 11:23:27 -070042 />
43</com.android.keyguard.KeyguardSliceView>