Files
frameworks_base/packages/SystemUI/res/xml/lockscreen_settings.xml
Jason Monk d6fa02f473 Tuner: Allow lockscreen launch targets to be customized
Visuals need SIGNIFICANT WORK. Otherwise seems good.

Test: Manual
Change-Id: I911217aca6dba41bf1b49fc3dd19cbfef443e6bd
2017-01-25 20:05:53 -05:00

60 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2016 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"
xmlns:sysui="http://schemas.android.com/apk/res-auto"
android:title="@string/other">
<PreferenceCategory
android:key="left"
android:title="@string/lockscreen_left">
<SwitchPreference
android:key="customize"
android:title="@string/lockscreen_customize" />
<Preference
android:key="shortcut"
android:title="@string/lockscreen_shortcut" />
<com.android.systemui.tuner.TunerSwitch
android:key="sysui_keyguard_left_unlock"
android:title="@string/lockscreen_unlock"
sysui:defValue="true" />
</PreferenceCategory>
<PreferenceCategory
android:key="right"
android:title="@string/lockscreen_right">
<SwitchPreference
android:key="customize"
android:title="@string/lockscreen_customize" />
<Preference
android:key="shortcut"
android:title="@string/lockscreen_shortcut" />
<com.android.systemui.tuner.TunerSwitch
android:key="sysui_keyguard_right_unlock"
android:title="@string/lockscreen_unlock"
sysui:defValue="true" />
</PreferenceCategory>
</PreferenceScreen>