Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0dbfd2ee authored by Michael Bestas's avatar Michael Bestas Committed by Gerrit Code Review
Browse files

Settings: forward port lock pattern grid size (2/2)

Change-Id: I7078d703c218cd096d9b77c003a94b52fbce6322
parent 497f2b7f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1511,6 +1511,8 @@
            android:taskAffinity="com.android.wizard"
            android:theme="@style/SetupWizardDisableAppStartingTheme" />

        <activity android:name="ChooseLockPatternSize" android:exported="false"/>

        <activity android:name="ChooseLockPattern" android:exported="false"/>

        <activity android:name="SetupChooseLockPassword"
+15 −0
Original line number Diff line number Diff line
@@ -699,6 +699,21 @@
    <string name="privacy_guard_help_text">In this screen you can choose which apps Privacy Guard should be active for by simply tapping on them. Selected apps will not be able to access your personal data such as contacts, messages or call logs. Long pressing an app\'s entry opens its app details screen.\n\nBuilt-in apps are not shown by default but can be revealed by selecting the respective menu option.</string>
    <string name="privacy_guard_manager_show_system_apps">Show built-in apps</string>

    <!-- Sizes for pattern lockscreen -->
    <string name="lock_pattern_size_3">3x3</string>
    <string name="lock_pattern_size_4">4x4</string>
    <string name="lock_pattern_size_5">5x5</string>
    <string name="lock_pattern_size_6">6x6</string>

    <!-- Whether a visible red line will be drawn after the user has drawn the unlock pattern incorrectly -->
    <string name="lockpattern_settings_enable_error_path_title">Show pattern error</string>
    <!-- Whether the dots will be drawn when using the lockscreen pattern -->
    <string name="lockpattern_settings_enable_dots_title">Show pattern dots</string>

    <!-- Lock screen vibrate settings -->
    <string name="lockscreen_vibrate_enabled_title">Vibrate</string>
    <string name="lockscreen_vibrate_enabled_head">Vibrate when unlocking</string>

    <!-- Battery saver -->
    <string name="battery_saver_threshold">Battery saver threshold</string>
    <string name="battery_saver_summary">Reduce performance and limit background data</string>
+2 −1
Original line number Diff line number Diff line
@@ -14,7 +14,8 @@
     limitations under the License.
-->

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
<PreferenceScreen
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:title="@string/security_settings_title">

</PreferenceScreen>
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@

        <SwitchPreference
            android:key="visiblepattern"
            android:persistent="false"
            android:title="@string/lockpattern_settings_enable_visible_pattern_title"/>

        <ListPreference
+40 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2012-2013 The CyanogenMod 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">

    <PreferenceScreen
        android:key="lock_pattern_size_3"
        android:title="@string/lock_pattern_size_3"
        android:persistent="false"/>

    <PreferenceScreen
        android:key="lock_pattern_size_4"
        android:title="@string/lock_pattern_size_4"
        android:persistent="false"/>

    <PreferenceScreen
        android:key="lock_pattern_size_5"
        android:title="@string/lock_pattern_size_5"
        android:persistent="false"/>

    <PreferenceScreen
        android:key="lock_pattern_size_6"
        android:title="@string/lock_pattern_size_6"
        android:persistent="false"/>

</PreferenceScreen>
Loading