我正在使用振动器服务来振动电话。但是,在我的OnePlus 6T测试设备上,改变振幅并不会改变振动强度。
我已经尝试将值设置为不同的值,但结果保持不变。
示例:
final Vibrator vib = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
vib.vibrate(VibrationEffect.createOneShot(1000, 255)); // Is the same as:
vib.vibrate(VibrationEffect.createOneShot(1000, 1));
这在onCreate的MainActivity中运行,我在其中拥有我的按钮侦听器。 它振动很好,但是强度没有变化。