diff --git a/res/drawable/ic_vibrate.xml b/res/drawable/ic_vibrate.xml new file mode 100644 index 0000000..a33fac7 --- /dev/null +++ b/res/drawable/ic_vibrate.xml @@ -0,0 +1,4 @@ + + + \ No newline at end of file diff --git a/res/values/cherish_strings.xml b/res/values/cherish_strings.xml index e0bbdf5..26d3c53 100644 --- a/res/values/cherish_strings.xml +++ b/res/values/cherish_strings.xml @@ -54,4 +54,7 @@ QS tile colors Use accent color for qs tile icons and background + + Vibrate to indicate call status + diff --git a/res/xml/cherish_settings_misc.xml b/res/xml/cherish_settings_misc.xml index 0f2bfd2..ae0a8e8 100644 --- a/res/xml/cherish_settings_misc.xml +++ b/res/xml/cherish_settings_misc.xml @@ -18,4 +18,12 @@ android:title="@string/misc_title" xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"> + + + diff --git a/src/com/cherish/settings/fragments/IncallFeedbackPreferenceController.java b/src/com/cherish/settings/fragments/IncallFeedbackPreferenceController.java new file mode 100644 index 0000000..2076ae7 --- /dev/null +++ b/src/com/cherish/settings/fragments/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.cherish.settings.fragments; + +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