ユーザーが[OK]をクリックするかアプリをキャンセルするまで振動する必要があるアラートボックスをポップアップするアプリを作成していますアラートボックスを
開くとアプリが振動しますが、[OK]をクリックするかアプリのクラッシュをキャンセルするとアプリがクラッシュします
これは、バイブレーション付きのアラート ボックスを作成するために使用したコーディングです。
Vibrator v;
button = (Button) findViewById(R.id.buttonAlert);
button.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
// TODO Auto-generated method stub
vibration();
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(
context);
alertDialogBuilder.setTitle("Your Title");
alertDialogBuilder.setMessage("Click yes to exit!")
.setCancelable(false)
.setPositiveButton("Yes",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id) {
MainActivity.this.finish();
v.cancel();
}
})
.setNegativeButton("No",new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id) {
dialog.cancel();
v.cancel();
}
});
AlertDialog alertDialog = alertDialogBuilder.create();
alertDialog.show();
}
});
これはバイブレーション方式です
public void vibration()
{
Vibrator v = (Vibrator) context.getSystemService(context.VIBRATOR_SERVICE);
long[] pattern = { 0, 3000, 3000 };
v.vibrate(pattern, 0);
// v.vibrate(5000);
}
Vibrator.cancel(); を使用するとエラーが発生します。または v.cancel(); 誰でも私を助けることができます