Android で ProgressDialog をテストするための小さなプログラムを作成します。
DialogInterface.OnKeyListener dialogKey = new DialogInterface.OnKeyListener() {
public boolean onKey(DialogInterface arg0, int arg1, KeyEvent arg2) {
switch(arg1) {
case KeyEvent.KEYCODE_VOLUME_DOWN:
Log.i("Spinner Key", "Key Volume Down");
Log.i("Spinner Key", "" + arg0.toString());
return true;
case KeyEvent.KEYCODE_VOLUME_UP:
Log.i("Spinner Key", "Key Volume Up");
Log.i("Spinner Key", "" + arg0.toString());
return true;
default:
break;
}
return true;
}
};
this.mypDialog = new ProgressDialog(SensorDefenceActivity.this);
this.mypDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
this.mypDialog.setTitle("Count");
this.mypDialog.setIndeterminate(false);
this.mypDialog.setMessage(this.start + "");
this.mypDialog.setCancelable(false);
this.mypDialog.setCanceledOnTouchOutside(false);
this.mypDialog.setButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int i)
{
dialog.cancel();
}
});
mypDialog.setOnKeyListener(dialogKey);
mypDialog.show();
mypDialog.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
ダイアログが表示されたら、音量キーの 1 つを押します。しかし、logcat で同じキー押下通知を 2 回受け取ります。
06-08 17:54:07.130: I/Spinner Key(11636): Key Volume Up
06-08 17:54:07.130: I/Spinner Key(11636): android.app.ProgressDialog@402bdd78
06-08 17:54:07.260: I/Spinner Key(11636): Key Volume Up
06-08 17:54:07.260: I/Spinner Key(11636): android.app.ProgressDialog@402bdd78
06-08 17:54:11.320: I/Spinner Key(11636): Key Volume Down
06-08 17:54:11.320: I/Spinner Key(11636): android.app.ProgressDialog@402bdd78
06-08 17:54:11.530: I/Spinner Key(11636): Key Volume Down
06-08 17:54:11.530: I/Spinner Key(11636): android.app.ProgressDialog@402bdd78
同じキーを押すメッセージが 2 回トリガーされないように、押す時間が非常に短いことを約束します。