总感觉手机上的振动器没有多大用处(当然静音模式下的振铃很有用),但还是顺带着说一下吧,只有两行代码:
1、获取振动服务的实例
Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
2、设置振动时长,单位当然也是ms
vibrator.vibrate(1000);
如果你觉得这样过去单调的话,可以设个节奏:
vibrator.vibrate(new long[]{10, 100, 20, 200}, -1);
两个参数,习惯告诉我第一个是节奏,第二个是重复次数,可事实并没有这么简单,我翻译不好,大家还是看原文吧:
public void vibrate (long[] pattern, int repeat)
pattern: an array of longs of times to turn the vibrator on or off.
repeat: the index into pattern at which to repeat, or -1 if you don't want to repeat.
google喜欢弄些技巧,我却觉得这里有点弄巧成拙了。
android振动器
原创
©著作权归作者所有:来自51CTO博客作者xyz_lmn的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Android 振动器的使用详解
效果图:选择相应的毫秒数,就会振动相应的秒数。实现步骤:一、创建activity_vibrator.xml布局<?xml version="1.0" encodi
android 振动器 Vibrator Spinner xml -
和菜鸟一起学android4.0.3源码之vibrator振动器移植心得
手机都是有震动的效果的,前天飞刀从手机里拆了一个振动器,然后让我下周把这
android struct 测试 平台 command