summaryrefslogtreecommitdiffstats
path: root/core/res/res/layout/unlock_finger.xml
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2012-02-26 05:40:45 +0300
committerGerrit Code Review <gerrit@review.cyanogenmod.com>2012-02-26 05:40:45 +0300
commit9f176fda7efc8726136c3395cab922006f84d010 (patch)
treec22473d3af1b750d008afdc04030ec8243329236 /core/res/res/layout/unlock_finger.xml
parent466d3a8bd05456170f08843a7ad2b79a96a0a395 (diff)
parent696448801c7094a7f226bf48d6ba442ba75dbd4a (diff)
downloadframeworks_base-9f176fda7efc8726136c3395cab922006f84d010.zip
frameworks_base-9f176fda7efc8726136c3395cab922006f84d010.tar.gz
frameworks_base-9f176fda7efc8726136c3395cab922006f84d010.tar.bz2
Merge "Implement basic framework for fingerprint lockscreen" into gingerbread
Diffstat (limited to 'core/res/res/layout/unlock_finger.xml')
-rw-r--r--core/res/res/layout/unlock_finger.xml63
1 files changed, 63 insertions, 0 deletions
diff --git a/core/res/res/layout/unlock_finger.xml b/core/res/res/layout/unlock_finger.xml
new file mode 100644
index 0000000..f3a74f6
--- /dev/null
+++ b/core/res/res/layout/unlock_finger.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+**
+** Copyright 2008, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License")
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingTop="8dip"
+ android:paddingBottom="8dip"
+ android:gravity="left"
+ >
+ <LinearLayout
+ android:id="@+id/userPrompt"
+ android:orientation="horizontal"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ >
+ <ImageView
+ android:src="@drawable/ic_lock_lock"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+ <TextView
+ android:id="@+id/usageMessage"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingTop="8dip"
+ />
+ </LinearLayout>
+
+ <TextView
+ android:id="@+id/errorMessage"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:paddingTop="2dip"
+ android:paddingBottom="2dip"
+ />
+
+ <ImageView
+ android:src="@drawable/cmfp"
+ android:paddingLeft="1dip"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ />
+
+</LinearLayout>