Android 无限振动

示例

使用振动(long []模式,int重复)

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

// 启动时间延迟 
// 振动500毫秒 
// 睡眠1000毫秒 
long[] pattern = {0, 500, 1000};

// 0表示无限期重复 
vibrator.vibrate(pattern, 0);