Android开发中振动的调用方法

来源:爱站网时间:2021-01-12编辑:网友分享
每款手机都有振动的功能,而在项目开发中,实现手机振动效果并不难,那么Android开发中振动的调用方法大家都了解吗?别着急,下面跟着小编的步伐进入下文学习吧!

每款手机都有振动的功能,而在项目开发中,实现手机振动效果并不难,那么Android开发中振动的调用方法大家都了解吗?别着急,下面跟着小编的步伐进入下文学习吧!

分享给大家供大家参考,具体如下:

调用Android系统的震动,只需要一个类 那就是Vibrator ,这个类在hard包中,一看系统级的服务,又要通过manifest.xml文件设置权限了

下面还是一起学习一下SDK吧

Class that operates the vibrator on the device.
If your process exits, any vibration you started with will stop.

//Vibrator类用来操作设备上的震动,如果你的线程退出了,那么启动的震动也会停止

public void vibrate (long[] pattern, int repeat)
Since: API Level 1

Vibrate with a given pattern.  //根据给定的节奏震动

Pass in an array of ints that are the durations for which to turn on or off the vibrator in milliseconds. The first value indicates the number of milliseconds to wait before turning the vibrator on. The next value indicates the number of milliseconds for which to keep the vibrator on before turning it off. Subsequent values alternate between durations in milliseconds to turn the vibrator off or to turn the vibrator on.

//传递一个整型数组作为关闭和开启震动的持续时间,以毫秒为单位。第一个值表示等待震动开启的毫秒数,下一个值表示保持震动的毫秒数,这个序列值交替表示震动关闭和开启的毫秒数

To cause the pattern to repeat, pass the index into the pattern array at which to start the repeat, or -1 to disable repeating.
//为了重复的按设定的节奏震动,传递index参数表示重复次数,用-1表示不重复。

Parameters
pattern     an array of longs of times for which 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.

还包含一个方法叫做cancel,用来取消震动

看一段演示的代码:

/*
 * @author octobershiner
 * SE.HIT
 * 一个使用android手机震动的demo
 * */
package uni.vibrator;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.os.Vibrator;
public class VibratorDemoActivity extends Activity {
  private Vibrator vibrator;
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    /*
     * 想设置震动大小可以通过改变pattern来设定,如果开启时间太短,震动效果可能感觉不到
     * */
    vibrator = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
    long [] pattern = {100,400,100,400}; // 停止 开启 停止 开启
    vibrator.vibrate(pattern,2); //重复两次上面的pattern 如果只想震动一次,index设为-1
  }
  public void onStop(){
    super.onStop();
    vibrator.cancel();
  }
}

以上内容就是爱站技术频道小编和大家分享的Android开发中振动的调用方法,我们只要明确项目的需求,这样才不会在后期出现迷茫的情况。

上一篇:如何获取Android应用程序大小

下一篇:Android开发中判断活动是否处于顶级的方法

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载