Merge "Separate power button preference controller from accessibility"
This commit is contained in:
committed by
Android (Google) Code Review
commit
48d5ca1692
@@ -98,7 +98,9 @@
|
|||||||
<SwitchPreference
|
<SwitchPreference
|
||||||
android:key="toggle_power_button_ends_call_preference"
|
android:key="toggle_power_button_ends_call_preference"
|
||||||
android:title="@string/accessibility_power_button_ends_call_prerefence_title"
|
android:title="@string/accessibility_power_button_ends_call_prerefence_title"
|
||||||
android:persistent="false"/>
|
android:persistent="false"
|
||||||
|
settings:controller="com.android.settings.accessibility.PowerButtonEndsCallPreferenceController"/>
|
||||||
|
|
||||||
|
|
||||||
<SwitchPreference
|
<SwitchPreference
|
||||||
android:key="toggle_lock_screen_rotation_preference"
|
android:key="toggle_lock_screen_rotation_preference"
|
||||||
|
@@ -39,8 +39,6 @@ import android.provider.SearchIndexableResource;
|
|||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
import android.util.ArrayMap;
|
import android.util.ArrayMap;
|
||||||
import android.view.KeyCharacterMap;
|
|
||||||
import android.view.KeyEvent;
|
|
||||||
import android.view.accessibility.AccessibilityManager;
|
import android.view.accessibility.AccessibilityManager;
|
||||||
|
|
||||||
import androidx.annotation.VisibleForTesting;
|
import androidx.annotation.VisibleForTesting;
|
||||||
@@ -99,8 +97,6 @@ public class AccessibilitySettings extends DashboardFragment implements
|
|||||||
// Preferences
|
// Preferences
|
||||||
private static final String TOGGLE_INVERSION_PREFERENCE =
|
private static final String TOGGLE_INVERSION_PREFERENCE =
|
||||||
"toggle_inversion_preference";
|
"toggle_inversion_preference";
|
||||||
private static final String TOGGLE_POWER_BUTTON_ENDS_CALL_PREFERENCE =
|
|
||||||
"toggle_power_button_ends_call_preference";
|
|
||||||
private static final String TOGGLE_LARGE_POINTER_ICON =
|
private static final String TOGGLE_LARGE_POINTER_ICON =
|
||||||
"toggle_large_pointer_icon";
|
"toggle_large_pointer_icon";
|
||||||
private static final String TOGGLE_DISABLE_ANIMATIONS = "toggle_disable_animations";
|
private static final String TOGGLE_DISABLE_ANIMATIONS = "toggle_disable_animations";
|
||||||
@@ -198,7 +194,6 @@ public class AccessibilitySettings extends DashboardFragment implements
|
|||||||
private final Map<ComponentName, PreferenceCategory> mPreBundledServiceComponentToCategoryMap =
|
private final Map<ComponentName, PreferenceCategory> mPreBundledServiceComponentToCategoryMap =
|
||||||
new ArrayMap<>();
|
new ArrayMap<>();
|
||||||
|
|
||||||
private SwitchPreference mTogglePowerButtonEndsCallPreference;
|
|
||||||
private SwitchPreference mToggleLargePointerIconPreference;
|
private SwitchPreference mToggleLargePointerIconPreference;
|
||||||
private SwitchPreference mToggleDisableAnimationsPreference;
|
private SwitchPreference mToggleDisableAnimationsPreference;
|
||||||
private SwitchPreference mToggleMasterMonoPreference;
|
private SwitchPreference mToggleMasterMonoPreference;
|
||||||
@@ -312,10 +307,7 @@ public class AccessibilitySettings extends DashboardFragment implements
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onPreferenceTreeClick(Preference preference) {
|
public boolean onPreferenceTreeClick(Preference preference) {
|
||||||
if (mTogglePowerButtonEndsCallPreference == preference) {
|
if (mToggleMasterMonoPreference == preference) {
|
||||||
handleTogglePowerButtonEndsCallPreferenceClick();
|
|
||||||
return true;
|
|
||||||
} else if (mToggleMasterMonoPreference == preference) {
|
|
||||||
handleToggleMasterMonoPreferenceClick();
|
handleToggleMasterMonoPreferenceClick();
|
||||||
return true;
|
return true;
|
||||||
} else if (mHearingAidPreferenceController.handlePreferenceTreeClick(preference)) {
|
} else if (mHearingAidPreferenceController.handlePreferenceTreeClick(preference)) {
|
||||||
@@ -358,14 +350,6 @@ public class AccessibilitySettings extends DashboardFragment implements
|
|||||||
DeviceConfig.NAMESPACE_TELEPHONY, RAMPING_RINGER_ENABLED, false);
|
DeviceConfig.NAMESPACE_TELEPHONY, RAMPING_RINGER_ENABLED, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleTogglePowerButtonEndsCallPreferenceClick() {
|
|
||||||
Settings.Secure.putInt(getContentResolver(),
|
|
||||||
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
|
|
||||||
(mTogglePowerButtonEndsCallPreference.isChecked()
|
|
||||||
? Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP
|
|
||||||
: Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_SCREEN_OFF));
|
|
||||||
}
|
|
||||||
|
|
||||||
private void handleToggleMasterMonoPreferenceClick() {
|
private void handleToggleMasterMonoPreferenceClick() {
|
||||||
Settings.System.putIntForUser(getContentResolver(), Settings.System.MASTER_MONO,
|
Settings.System.putIntForUser(getContentResolver(), Settings.System.MASTER_MONO,
|
||||||
mToggleMasterMonoPreference.isChecked() ? 1 : 0, UserHandle.USER_CURRENT);
|
mToggleMasterMonoPreference.isChecked() ? 1 : 0, UserHandle.USER_CURRENT);
|
||||||
@@ -380,15 +364,6 @@ public class AccessibilitySettings extends DashboardFragment implements
|
|||||||
// Display inversion.
|
// Display inversion.
|
||||||
mToggleInversionPreference = findPreference(TOGGLE_INVERSION_PREFERENCE);
|
mToggleInversionPreference = findPreference(TOGGLE_INVERSION_PREFERENCE);
|
||||||
|
|
||||||
// Power button ends calls.
|
|
||||||
mTogglePowerButtonEndsCallPreference =
|
|
||||||
(SwitchPreference) findPreference(TOGGLE_POWER_BUTTON_ENDS_CALL_PREFERENCE);
|
|
||||||
if (!KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_POWER)
|
|
||||||
|| !Utils.isVoiceCapable(getActivity())) {
|
|
||||||
mCategoryToPrefCategoryMap.get(CATEGORY_INTERACTION_CONTROL)
|
|
||||||
.removePreference(mTogglePowerButtonEndsCallPreference);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Large pointer icon.
|
// Large pointer icon.
|
||||||
mToggleLargePointerIconPreference = findPreference(TOGGLE_LARGE_POINTER_ICON);
|
mToggleLargePointerIconPreference = findPreference(TOGGLE_LARGE_POINTER_ICON);
|
||||||
|
|
||||||
@@ -657,17 +632,6 @@ public class AccessibilitySettings extends DashboardFragment implements
|
|||||||
// Dark Mode
|
// Dark Mode
|
||||||
mDarkUIPreferenceController.updateState(mDarkUIModePreference);
|
mDarkUIPreferenceController.updateState(mDarkUIModePreference);
|
||||||
|
|
||||||
// Power button ends calls.
|
|
||||||
if (KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_POWER)
|
|
||||||
&& Utils.isVoiceCapable(getActivity())) {
|
|
||||||
final int incallPowerBehavior = Settings.Secure.getInt(getContentResolver(),
|
|
||||||
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
|
|
||||||
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT);
|
|
||||||
final boolean powerButtonEndsCall =
|
|
||||||
(incallPowerBehavior == Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP);
|
|
||||||
mTogglePowerButtonEndsCallPreference.setChecked(powerButtonEndsCall);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Master mono
|
// Master mono
|
||||||
updateMasterMono();
|
updateMasterMono();
|
||||||
|
|
||||||
|
@@ -0,0 +1,54 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2019 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.accessibility;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.provider.Settings;
|
||||||
|
import android.view.KeyCharacterMap;
|
||||||
|
import android.view.KeyEvent;
|
||||||
|
|
||||||
|
import com.android.settings.Utils;
|
||||||
|
import com.android.settings.core.TogglePreferenceController;
|
||||||
|
|
||||||
|
public class PowerButtonEndsCallPreferenceController extends TogglePreferenceController {
|
||||||
|
|
||||||
|
public PowerButtonEndsCallPreferenceController(Context context, String preferenceKey) {
|
||||||
|
super(context, preferenceKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isChecked() {
|
||||||
|
final int incallPowerBehavior = Settings.Secure.getInt(mContext.getContentResolver(),
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_DEFAULT);
|
||||||
|
return incallPowerBehavior == Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean setChecked(boolean isChecked) {
|
||||||
|
return Settings.Secure.putInt(mContext.getContentResolver(),
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
|
||||||
|
(isChecked ? Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP
|
||||||
|
: Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_SCREEN_OFF));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getAvailabilityStatus() {
|
||||||
|
return !KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_POWER)
|
||||||
|
|| !Utils.isVoiceCapable(mContext) ? UNSUPPORTED_ON_DEVICE : AVAILABLE;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,129 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2019 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.accessibility;
|
||||||
|
|
||||||
|
import static com.google.common.truth.Truth.assertThat;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.provider.Settings;
|
||||||
|
|
||||||
|
import androidx.preference.SwitchPreference;
|
||||||
|
|
||||||
|
import com.android.settings.core.BasePreferenceController;
|
||||||
|
import com.android.settings.testutils.shadow.ShadowKeyCharacterMap;
|
||||||
|
import com.android.settings.testutils.shadow.ShadowUtils;
|
||||||
|
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.robolectric.RobolectricTestRunner;
|
||||||
|
import org.robolectric.RuntimeEnvironment;
|
||||||
|
import org.robolectric.annotation.Config;
|
||||||
|
|
||||||
|
@RunWith(RobolectricTestRunner.class)
|
||||||
|
@Config(shadows = {ShadowUtils.class, ShadowKeyCharacterMap.class})
|
||||||
|
public class PowerButtonEndsCallPreferenceControllerTest {
|
||||||
|
|
||||||
|
private static final int UNKNOWN = -1;
|
||||||
|
|
||||||
|
private Context mContext;
|
||||||
|
private SwitchPreference mPreference;
|
||||||
|
private PowerButtonEndsCallPreferenceController mController;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setUp() {
|
||||||
|
mContext = RuntimeEnvironment.application;
|
||||||
|
mPreference = new SwitchPreference(mContext);
|
||||||
|
mController = new PowerButtonEndsCallPreferenceController(mContext, "power_button");
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown() {
|
||||||
|
ShadowUtils.reset();
|
||||||
|
ShadowKeyCharacterMap.reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void getAvailabilityStatus_hasPowerKeyAndVoiceCapable_shouldReturnAvailable() {
|
||||||
|
ShadowKeyCharacterMap.setDevicehasKey(true);
|
||||||
|
ShadowUtils.setIsVoiceCapable(true);
|
||||||
|
|
||||||
|
assertThat(mController.getAvailabilityStatus())
|
||||||
|
.isEqualTo(BasePreferenceController.AVAILABLE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void getAvailabilityStatus_noVoiceCapable_shouldReturnUnsupportedOnDevice() {
|
||||||
|
ShadowKeyCharacterMap.setDevicehasKey(true);
|
||||||
|
ShadowUtils.setIsVoiceCapable(false);
|
||||||
|
|
||||||
|
assertThat(mController.getAvailabilityStatus())
|
||||||
|
.isEqualTo(BasePreferenceController.UNSUPPORTED_ON_DEVICE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void getAvailabilityStatus_noPowerKey_shouldReturnUnsupportedOnDevice() {
|
||||||
|
ShadowKeyCharacterMap.setDevicehasKey(false);
|
||||||
|
ShadowUtils.setIsVoiceCapable(true);
|
||||||
|
|
||||||
|
assertThat(mController.getAvailabilityStatus())
|
||||||
|
.isEqualTo(BasePreferenceController.UNSUPPORTED_ON_DEVICE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void isChecked_enabledHangUp_shouldReturnTrue() {
|
||||||
|
Settings.Secure.putInt(mContext.getContentResolver(),
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP);
|
||||||
|
|
||||||
|
mController.updateState(mPreference);
|
||||||
|
|
||||||
|
assertThat(mController.isChecked()).isTrue();
|
||||||
|
assertThat(mPreference.isChecked()).isTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void isChecked_disabledHangUp_shouldReturnFalse() {
|
||||||
|
Settings.Secure.putInt(mContext.getContentResolver(),
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR,
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_SCREEN_OFF);
|
||||||
|
|
||||||
|
mController.updateState(mPreference);
|
||||||
|
|
||||||
|
assertThat(mController.isChecked()).isFalse();
|
||||||
|
assertThat(mPreference.isChecked()).isFalse();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void setChecked_enabled_shouldEnableHangUp() {
|
||||||
|
mController.setChecked(true);
|
||||||
|
|
||||||
|
assertThat(Settings.Secure.getInt(mContext.getContentResolver(),
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR, UNKNOWN))
|
||||||
|
.isEqualTo(Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_HANGUP);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void setChecked_disabled_shouldDisableHangUp() {
|
||||||
|
mController.setChecked(false);
|
||||||
|
|
||||||
|
assertThat(Settings.Secure.getInt(mContext.getContentResolver(),
|
||||||
|
Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR, UNKNOWN))
|
||||||
|
.isEqualTo(Settings.Secure.INCALL_POWER_BUTTON_BEHAVIOR_SCREEN_OFF);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2019 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.android.settings.testutils.shadow;
|
||||||
|
|
||||||
|
import android.view.KeyCharacterMap;
|
||||||
|
|
||||||
|
import org.robolectric.annotation.Implementation;
|
||||||
|
import org.robolectric.annotation.Implements;
|
||||||
|
|
||||||
|
@Implements(KeyCharacterMap.class)
|
||||||
|
public class ShadowKeyCharacterMap extends org.robolectric.shadows.ShadowKeyCharacterMap{
|
||||||
|
|
||||||
|
private static boolean sIsDeviceHasKey;
|
||||||
|
|
||||||
|
public static void reset() {
|
||||||
|
sIsDeviceHasKey = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setDevicehasKey(boolean isDeviceHasKey) {
|
||||||
|
sIsDeviceHasKey = isDeviceHasKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Implementation
|
||||||
|
protected static boolean deviceHasKey(int keyCode) {
|
||||||
|
return sIsDeviceHasKey;
|
||||||
|
}
|
||||||
|
}
|
@@ -39,6 +39,7 @@ public class ShadowUtils {
|
|||||||
private static ComponentName sDeviceOwnerComponentName;
|
private static ComponentName sDeviceOwnerComponentName;
|
||||||
private static Map<String, String> sAppNameMap;
|
private static Map<String, String> sAppNameMap;
|
||||||
private static boolean sIsSystemAlertWindowEnabled;
|
private static boolean sIsSystemAlertWindowEnabled;
|
||||||
|
private static boolean sIsVoiceCapable;
|
||||||
|
|
||||||
@Implementation
|
@Implementation
|
||||||
protected static int enforceSameOwner(Context context, int userId) {
|
protected static int enforceSameOwner(Context context, int userId) {
|
||||||
@@ -58,6 +59,7 @@ public class ShadowUtils {
|
|||||||
sFingerprintManager = null;
|
sFingerprintManager = null;
|
||||||
sIsUserAMonkey = false;
|
sIsUserAMonkey = false;
|
||||||
sIsDemoUser = false;
|
sIsDemoUser = false;
|
||||||
|
sIsVoiceCapable = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void setIsDemoUser(boolean isDemoUser) {
|
public static void setIsDemoUser(boolean isDemoUser) {
|
||||||
@@ -123,4 +125,13 @@ public class ShadowUtils {
|
|||||||
public static void setIsSystemAlertWindowEnabled(boolean enabled) {
|
public static void setIsSystemAlertWindowEnabled(boolean enabled) {
|
||||||
sIsSystemAlertWindowEnabled = enabled;
|
sIsSystemAlertWindowEnabled = enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Implementation
|
||||||
|
protected static boolean isVoiceCapable(Context context) {
|
||||||
|
return sIsVoiceCapable;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setIsVoiceCapable(boolean isVoiceCapable) {
|
||||||
|
sIsVoiceCapable = isVoiceCapable;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user