标签:android style io 使用 sp 文件 on 代码 bs
在AndroidMainfest.xml文件中声明振动权限
<uses-permission android:name=”android.permission.VIBRATE”/>
通过系统服务获得手机振动服务,如
Vibrator vibrator=(Vibrator)getSystemService(VIBRATOR_SERVICE)
得到振动服务后检测vibrator是否存在,如
vibrator.hasVibrator();
如果有返回true,否则返回false
根据实际需要进行适当的调用,如
Vibrator.vibrator(long milliseconds);
通过上述代码开始启动vibrator持续milliseconds毫秒(1000毫秒=1秒)
Vibrator.vibrator(long[] pattern, int repeat);
这样以pattern方式repeat(重复)启动vibrator(振动)。使用pattern的形式如下:
new long[]{a1,a2,a3,a4......}
上述格式中,其中以两个一组,如a1和a2为一组、a3和a4为一组,每一组的前一个代表等待多少毫秒启动vibrator,后一个代表vibrator持续多少毫秒停止,之后往复即可。Repeat表示重复次数,当其为-1时,表示不重复只以pattern的方式运行一次
停止振动
Vibrator.cancel();
标签:android style io 使用 sp 文件 on 代码 bs
原文地址:http://blog.csdn.net/lindonglian/article/details/40901395