Where is the setting setVibrateSetting(AudioManager.VIBRATE_TYPE_NOTIFICATION, false) in the phone?
问题 i made an app that messes with the system vibrate settings. namely, it turns them off. AudioManager audioManager = (AudioManager)ctx.getSystemService(Context.AUDIO_SERVICE); audioManager.setVibrateSetting(AudioManager.VIBRATE_TYPE_RINGER, AudioManager.VIBRATE_SETTING_OFF); audioManager.setVibrateSetting(AudioManager.VIBRATE_TYPE_NOTIFICATION, AudioManager.VIBRATE_SETTING_OFF); System.putInt(ctx.getContentResolver(), VIBRATE_IN_SILENT, 0); i wonder now, where i can turn the vibration manually