android随笔11——震动

private Vibrator vibrator;



 * 获得振动器​

vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);

*参数一 : 用一个long[]{}数组来控制震动的效果 两个数字为一组 工作时长;休息时长

*参数二 : 循环次数   -1表示不循环 ​​

vibrator.vibrate(new long[]{500,1000,1500,500}, -1);



<span style="color:#ff0000;"><strong>需要添加 android.permission.VIBRATE 震动权限</strong></span>

你可能感兴趣的:(android随笔11——震动)