如何确定振动设置是否打开?

时间:2014-06-06 13:08:10

标签: android settings vibration

在Android上如何知道振动设置是否已打开?我知道如何从AudioManager获得振铃模式(正常,静音,振动),但这不是我想要的。在大多数Android设备上都有这样的设置"振铃时振动"。我想知道这个设置的价值。 enter image description here

1 个答案:

答案 0 :(得分:2)

我找到了!这就是它的完成方式。

    boolean vibrateWhenRinging = false;
    try {
        vibrateWhenRinging = (Settings.System.getInt(getContentResolver(), "vibrate_when_ringing") == 1);
    } catch (SettingNotFoundException e) {
    }