diff --git a/res/values/evolution_strings.xml b/res/values/evolution_strings.xml index b08cce5987f..b71608f4036 100644 --- a/res/values/evolution_strings.xml +++ b/res/values/evolution_strings.xml @@ -234,4 +234,10 @@ Always show when charging Display info when device is charging + + + In-call vibration options + Vibrate on connect + Vibrate on call waiting + Vibrate on disconnect diff --git a/res/xml/accessibility_vibration_intensity_settings.xml b/res/xml/accessibility_vibration_intensity_settings.xml index 8ba9ce90f36..ae44d7358c4 100644 --- a/res/xml/accessibility_vibration_intensity_settings.xml +++ b/res/xml/accessibility_vibration_intensity_settings.xml @@ -93,4 +93,27 @@ + + + + + + + + + + + diff --git a/res/xml/accessibility_vibration_settings.xml b/res/xml/accessibility_vibration_settings.xml index be45659b310..91a6eea3b36 100644 --- a/res/xml/accessibility_vibration_settings.xml +++ b/res/xml/accessibility_vibration_settings.xml @@ -85,4 +85,27 @@ + + + + + + + + + + + diff --git a/src/com/android/settings/sound/IncallFeedbackPreferenceController.java b/src/com/android/settings/sound/IncallFeedbackPreferenceController.java new file mode 100644 index 00000000000..f1517aa006f --- /dev/null +++ b/src/com/android/settings/sound/IncallFeedbackPreferenceController.java @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2019 The PixelExperience 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.sound; + +import android.content.Context; +import android.telephony.TelephonyManager; + +import com.android.settings.core.BasePreferenceController; + +public class IncallFeedbackPreferenceController extends BasePreferenceController { + + public IncallFeedbackPreferenceController(Context context, String key) { + super(context, key); + } + + @Override + public int getAvailabilityStatus() { + return isVoiceCapable() ? AVAILABLE : UNSUPPORTED_ON_DEVICE; + } + + private boolean isVoiceCapable() { + TelephonyManager telephony = + (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE); + return telephony != null && telephony.isVoiceCapable(); + } + +} \ No newline at end of file