在按下按钮之前振动并在按下按钮时(或手指被取下)停止振动

时间:2015-02-19 05:49:40

标签: java android vibrate

我计划按下一个按钮,当按下按钮时振动开始并继续振动,直到手指向上或按钮未按下。

我正在使用Touch Listener来实现此目的。

我的代码如下:

package com.example.vibrator;

import android.app.Activity;
import android.os.Bundle;
import android.os.Vibrator;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.Button;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        final Vibrator vibrator;

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

        Button btn = (Button) findViewById(R.id.button1);
        btn.setOnTouchListener(new OnTouchListener() {

            @Override
            public boolean onTouch(View v, MotionEvent event) {
                int action = event.getAction();

                if (action == MotionEvent.ACTION_DOWN) {
                    vibrator.vibrate(60000);
                } else if (action == MotionEvent.ACTION_UP) {
                    vibrator.cancel();
                }

                return true;
            }
        });
    }
}

此代码中的问题是它继续振动,当手指向上时,振动不会停止或取消。

P.S我使用了清单中的权限

1 个答案:

答案 0 :(得分:5)

编辑:更正后的代码:

试试这个:

int action = event.getActionMasked();

if (action == MotionEvent.ACTION_DOWN) {
    long[] pattern = { 0, 200, 0 }; //0 to start now, 200 to vibrate 200 ms, 0 to sleep for 0 ms.
    vibrator.vibrate(pattern, 0); // 0 to repeat endlessly.
} else if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL) {
    vibrator.cancel();
}