次の日付ピッカーの例を使用しています
http://developer.Android.com/guide/tutorials/views/hello-datepicker.html
日付ピッカーのキャンセルボタンをクリックしていくつかの機能を実行したいのですが、datepickerdialog内にキャンセルイベントが表示されません
誰かがこれを達成する方法を私に導くことができますか?.
どんな助けでもいただければ幸いです。
これが私がそれをした方法です:
DatePickerDialog dialog = new DatePickerDialog(this,
mDateSetListener,
year, month, day);
dialog.setButton(DialogInterface.BUTTON_NEGATIVE, getString(R.string.cancel), new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
if (which == DialogInterface.BUTTON_NEGATIVE) {
// Do Stuff
}
}
});
ユーザーが日付を選択したかどうかに応じて異なるアクションを実行する場合は、onDismissハンドラーを使用できます。ユーザーが日付を選択したかどうかを示すために、必ずブール値( "isDataSet"など)を設定してください。次に例を示します。
// Date Picker Dialog
public void showDatePickerDialog(View view) {
int year, month, day;
isDataSet = false; // this is used by the onDismiss handler
// Set initial time period in DatePicker to current month
calendarCurrent = Calendar.getInstance();
month = calendarCurrent.get(Calendar.MONTH);
day = calendarCurrent.get(Calendar.DAY_OF_MONTH);
year = calendarCurrent.get(Calendar.YEAR);
DatePickerDialog datePickerDialog = new DatePickerDialog(YourActivity.this, dateSetListener, year, month, day );
datePickerDialog.setOnDismissListener(mOnDismissListener);
datePickerDialog.show();
datePickerDialog_visible=true; //indicate dialog is up
} // [END showDatePickerDialog]
//onDismiss handler
private DialogInterface.OnDismissListener mOnDismissListener =
new DialogInterface.OnDismissListener() {
public void onDismiss(DialogInterface dialog) {
datePickerDialog_visible=false; //indicate dialog is cancelled/gone
if (isDataSet) { // [IF date was picked
//do something, date now selected
} else {
//do someething else, dialog cancelled or exited
}
}
};
DatePickerDialog
はDialog
であるため、以下をサポートします。
setOnCancelListener(OnCancelListener listener)
setOnDismissListener(OnDismissListener listener)
両方のリスナーを使用して、日付ピッカーダイアログのすべての却下を識別できます。前者は質問に答え、後者は完了のためのものです。
DatePickerDialog dialog = new DatePickerDialog(this, new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker datePicker, int i, int i1, int i2) {
}
}, calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH), calendar.get(Calendar.DAY_OF_MONTH));
dialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialogInterface) {
}
});
dialog.show();
DatePickerDialogは、onCancelリスナーを公開するようになりました。
DatePickerDialog datePickerDialog = DatePickerDialog.newInstance(new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePickerDialog datePickerDialog, int year, int month, int day) {
// Do whatever you want when the date is selected.
editText.setText(String.format("%04d-%02d-%02d", year, month+1, day));
}
}, calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH),calendar.get(Calendar.DAY_OF_MONTH));
datePickerDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialog) {
}
});
public void showDatePicker() {
final Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int day = c.get(Calendar.DAY_OF_MONTH);
DatePickerDialog datePicker = new DatePickerDialog(getActivity(), (view, year1, month1, day1) -> {
Calendar c1 = Calendar.getInstance();
c1.set(year1, month1, day1);
Date date = c1.getTime();
SimpleDateFormat formatter = new SimpleDateFormat("dd MMMM yyyy");
String d = formatter.format(date);
// btnDatePicker.setText(d);
// selectedDate = d;
}, year, month, day) {
@Override
public void onClick(@NonNull DialogInterface dialog, int which) {
super.onClick(dialog, which);
if (which == DialogInterface.BUTTON_POSITIVE) {
} else if (which == DialogInterface.BUTTON_POSITIVE) {
}
}
};
datePicker.getDatePicker().setMinDate(System.currentTimeMillis());
datePicker.show();
}
簡単に言うと、AppCompatDialogFragment()
を使用または拡張している場合は、
override fun onCancel(dialog: DialogInterface) {
super.onCancel(dialog)
// write your own code
}
それだ :)
コードのこの部分では:
private DatePickerDialog.OnDateSetListener mDateSetListener =
new DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int year,
int monthOfYear, int dayOfMonth) {
mYear = year;
mMonth = monthOfYear;
mDay = dayOfMonth;
updateDisplay();
}
};
また、実装する必要があります onClick() :
public void onClick (DialogInterface dialog, int which) {
if (which == Button.NEGATIVE) {
//Cancel
}
}
Button.NEGATIVE のAPI
古代の質問をポップアップして申し訳ありませんが、私は同様の問題に直面し、適切な動作で標準のDatePickerDialogの単純な後継を作成しました。参照してください このトピックで これがお役に立てば幸いです。
次のコードは、[キャンセル]ボタンが日付ピッカーウィンドウを閉じないという問題を解決するのに役立ちました。ソリューションを提供してくれたeSilverに感謝します。
dialog.setButton(DialogInterface.BUTTON_NEGATIVE, "Cancel", new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog, int which) {
if (which == DialogInterface.BUTTON_NEGATIVE) {
datePickerPlugin.success(new PluginResult(PluginResult.Status.OK, ""), callBackId);
dateDialog.hide();
}
}
});
@PeteHのすばらしい回答にいくつかのコードを追加しました(これは、ユーザーが日付を押すかキャンセルすることに反応するためのものです)。
private void showDatePickerDialog() {
final int[] year = new int[1];
final int[] month = new int[1];
final int[] day = new int[1];
isDataSet = false; // this is used by the onDismiss handler
// Set initial time period in DatePicker to current month
Calendar calendarCurrent = Calendar.getInstance();
month[0] = calendarCurrent.get(Calendar.MONTH);
day[0] = calendarCurrent.get(Calendar.DAY_OF_MONTH);
year[0] = calendarCurrent.get(Calendar.YEAR);
DatePickerDialog datePickerDialog = new DatePickerDialog(
MyActivity,
new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker datePicker, int y, int m, int d) {
isDataSet =true;
//user confirms date
year[0] =y;
month[0] = m;
day[0] =d;
//do something with date selected
}
},
year[0],
month[0],
day[0]
);
datePickerDialog.setOnDismissListener(mOnDismissListener);
datePickerDialog.show();
}
private DialogInterface.OnDismissListener mOnDismissListener =new DialogInterface.OnDismissListener() {
public void onDismiss(DialogInterface dialog) {
if (!isDataSet){
//do something if user cancels
}
};