Remove redundant swipe down notification and one handed sub settings am: 1c310ef44b

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/14797789

Change-Id: I1f9f15568537d75e49ad622564ed9f19060cf254
This commit is contained in:
Jason Chang
2021-06-12 11:59:54 +00:00
committed by Automerger Merge Worker
12 changed files with 1 additions and 859 deletions

View File

@@ -33,13 +33,6 @@
settings:searchable="false"
settings:controller="com.android.settings.gestures.SwipeToNotificationPreferenceController" />
<Preference
android:key="gesture_swipe_bottom_to_notification"
android:title="@string/swipe_bottom_to_notifications_title"
android:fragment="com.android.settings.gestures.SwipeBottomToNotificationSettings"
settings:searchable="false"
settings:controller="com.android.settings.gestures.SwipeBottomToNotificationPreferenceController" />
<Preference
android:key="gesture_double_tap_power_input_summary"
android:title="@string/double_tap_power_for_camera_title"

View File

@@ -1,38 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2020 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:settings="http://schemas.android.com/apk/res-auto"
android:title="@string/swipe_bottom_to_notifications_title">
<com.android.settingslib.widget.LayoutPreference
android:key="one_handed_header"
android:layout="@layout/one_handed_header"
android:persistent="false"
android:selectable="false"
settings:allowDividerBelow="false"
settings:searchable="false"/>
<SwitchPreference
android:key="gesture_swipe_bottom_to_notification"
android:title="@string/swipe_bottom_to_notifications_title"
android:summary="@string/swipe_bottom_to_notifications_summary"
settings:controller="com.android.settings.gestures.SwipeBottomToNotificationPreferenceController"
settings:allowDividerAbove="true" />
</PreferenceScreen>