Add lock-to-app to settings

Lock-to-app when disabled shows some instructions about how to
enable it and use it.

When enabled shows an option of use lock screen, which controls
whether the device is locked when exiting lock-to-app.  Turning
on use lock screen requires that the device have some security
challenge.

Bug: 15759649
Change-Id: I6188243e03fb0c85bdfdbc32a23ad486296a34f9
This commit is contained in:
Jason Monk
2014-06-19 10:33:41 -04:00
parent 8b2655cfbb
commit 315070d58b
8 changed files with 391 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
** Copyright 2014, 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.
*/
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/instructions_area"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingLeft="@dimen/switchbar_subsettings_margin_start"
android:paddingRight="@dimen/screen_margin_sides">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:paddingTop="@dimen/lock_to_app_textview_padding"
android:text="@string/lock_to_app_description"
android:textAppearance="@style/TextAppearance.Medium"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="@dimen/lock_to_app_textview_padding"
android:text="@string/lock_to_app_start_step1"
android:textAppearance="@style/TextAppearance.Medium"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="@dimen/lock_to_app_textview_padding"
android:text="@string/lock_to_app_start_step2"
android:textAppearance="@style/TextAppearance.Medium"
/>
<TextView
android:id="@+id/lock_to_app_start_step3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/lock_to_app_textview_padding"
android:paddingTop="@dimen/lock_to_app_textview_padding"
android:text="@string/lock_to_app_start_step3"
android:textAppearance="@style/TextAppearance.Medium"
/>
</LinearLayout>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>

View File

@@ -147,4 +147,7 @@
<dimen name="search_suggestion_item_image_margin_start">32dp</dimen>
<dimen name="search_suggestion_item_image_margin_end">16dp</dimen>
<!-- Lock-to-app textview paddings -->
<dimen name="lock_to_app_textview_padding">16dp</dimen>
</resources>

View File

@@ -5400,4 +5400,18 @@
<!-- Switch On/Off -->
<string name="switch_on_text">On</string>
<string name="switch_off_text">Off</string>
<!-- Lock-to-app title [CHAR LIMIT=24] -->
<string name="lock_to_app_title">Lock-to-app</string>
<!-- Description of lock-to-app feature [CHAR LIMIT=105] -->
<string name="lock_to_app_description">Lock-to-app locks the display in a single app.\n\n\nTo start Lock-to-app</string>
<!-- Lock-to-app starting instruction 1. [CHAR LIMIT=45] -->
<string name="lock_to_app_start_step1">1\t\tTurn the setting on</string>
<!-- Lock-to-app starting instruction 2. [CHAR LIMIT=55] -->
<string name="lock_to_app_start_step2">2\t\tStart an app you want</string>
<!-- Lock-to-app starting instruction 3. The $ is not actually shown or
translated, it is a marker of where the recents icon shows up. [CHAR LIMIT=60] -->
<string name="lock_to_app_start_step3">3\t\tPress and hold the recent apps button $</string>
<!-- Label for whether should use screen lock or not. [CHAR LIMIT=30]-->
<string name="lock_to_app_screen_lock">Use screen lock</string>
</resources>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 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.
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="@string/lock_to_app_title"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
<SwitchPreference
android:key="use_screen_lock"
android:title="@string/lock_to_app_screen_lock"
android:persistent="false" />
</PreferenceScreen>

View File

@@ -102,4 +102,10 @@
android:persistent="false"
android:fragment="com.android.settings.AdvancedSecuritySettings"/>
</PreferenceCategory>
<PreferenceScreen
android:key="lock_to_app_settings"
android:fragment="com.android.settings.LockToAppSettings"
android:title="@string/lock_to_app_title"/>
</PreferenceScreen>