* allow setting vibration when call is connected * allow setting vibration when call is disconnected * allow setting vibration for call waiting * this works with google and aosp dialer :) Adapted to PE [arrow-13.0]: - Move inside accessibility_vibration_settings as all the aosp vibration toggles are there includes: fixup! Settings: incall vibration options [3/3] [ghostrider-reborn] - Enable by default - Add to the slider-based prefs page as well Change-Id: I55e99f501a3af07287c57a23939666351f4cef67 Signed-off-by: Karan Parashar <whyredfire@gmail.com> Signed-off-by: Adithya R <gh0strider.2k18.reborn@gmail.com> Signed-off-by: someone5678 <someone5678@users.noreply.github.com>
41 lines
1.4 KiB
Java
41 lines
1.4 KiB
Java
/*
|
|
* 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();
|
|
}
|
|
|
|
} |