触摸屏幕后振动

时间:2012-03-22 22:54:03

标签: android touchscreen vibrate vibration

我正在开发一款应用程序,该应用程序在应用程序打开3000毫秒后开始振动。我有这两行代码:

 Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
 v.vibrate(3000);

我想写一个在用户触摸屏幕后开始振动的android代码。请帮帮我。

1 个答案:

答案 0 :(得分:4)

Activity

@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
    if (ev.getAction() == MotionEvent.ACTION_UP) {
        yourVibrateFunction();
    }

    return super.dispatchTouchEvent(ev);
}