blob: 6cb5e67fee12c3bf265b1fd269097322dd7d74f7 [file] [log] [blame]
Jim Millerdcb3d842012-08-23 19:18:12 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2012, 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 the selector widget that allows the user to select an action. -->
Jim Miller5ecd8112013-01-09 18:50:26 -080021<com.android.keyguard.KeyguardSelectorView
Jim Millerdcb3d842012-08-23 19:18:12 -070022 xmlns:android="http://schemas.android.com/apk/res/android"
Jim Miller5ecd8112013-01-09 18:50:26 -080023 xmlns:androidprv="http://schemas.android.com/apk/res/com.android.keyguard"
Jim Millerdcb3d842012-08-23 19:18:12 -070024 android:id="@+id/keyguard_selector_view"
25 android:layout_width="match_parent"
26 android:layout_height="match_parent"
Jim Miller5ecd8112013-01-09 18:50:26 -080027 androidprv:layout_maxWidth="420dp"
28 androidprv:layout_maxHeight="@dimen/keyguard_security_height"
Jim Miller71b3cd52012-10-10 19:02:40 -070029 android:clipChildren="false"
30 android:clipToPadding="false"
Svetoslav Ganovc4842c12012-10-31 14:33:32 -070031 android:orientation="vertical"
32 android:contentDescription="@string/keyguard_accessibility_slide_unlock">
Jim Millerdcb3d842012-08-23 19:18:12 -070033
Jim Miller71b3cd52012-10-10 19:02:40 -070034 <FrameLayout
Jim Miller0ff7f012012-10-11 20:40:01 -070035 android:layout_width="match_parent"
36 android:layout_height="match_parent"
Jim Millerdcb3d842012-08-23 19:18:12 -070037 android:layout_gravity="center"
Jim Miller71b3cd52012-10-10 19:02:40 -070038 android:clipChildren="false"
39 android:clipToPadding="false"
Jim Millerdcb3d842012-08-23 19:18:12 -070040 android:gravity="center">
41
Jim Miller0b728242012-10-28 19:42:30 -070042 <include layout="@layout/keyguard_message_area"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content" />
45
Chris Wrenefbfa682012-11-07 19:18:46 -050046 <View
47 android:id="@+id/keyguard_selector_view_frame"
48 android:layout_width="match_parent"
49 android:layout_height="match_parent"
50 android:layout_marginLeft="16dp"
51 android:layout_marginRight="16dp"
Jim Miller5ecd8112013-01-09 18:50:26 -080052 android:background="@drawable/kg_bouncer_bg_white"/>
Chris Wrenefbfa682012-11-07 19:18:46 -050053
Jim Miller71b3cd52012-10-10 19:02:40 -070054 <include layout="@layout/keyguard_glow_pad_container" />
Jim Millerdcb3d842012-08-23 19:18:12 -070055
Jim Miller9e0a2502012-11-07 21:23:32 -080056 <include layout="@layout/keyguard_eca"
Jim Miller109f1fd2012-09-19 20:44:16 -070057 android:id="@+id/keyguard_selector_fade_container"
58 android:layout_width="match_parent"
Adam Powellba48a392012-10-12 14:41:04 -070059 android:layout_height="48dp"
60 android:layout_gravity="bottom|center_horizontal" />
Jim Miller71b3cd52012-10-10 19:02:40 -070061 </FrameLayout>
Jim Millerdcb3d842012-08-23 19:18:12 -070062
Jim Miller5ecd8112013-01-09 18:50:26 -080063</com.android.keyguard.KeyguardSelectorView>
Jim Millerdcb3d842012-08-23 19:18:12 -070064