0

単一の Set コマンドの代わりに Cancel/Set オプションを持つ日付/時刻ピッカーを使用することは可能ですか? 私のユースケースは、日付ピッカーをクリックしてフィールドが必須ではない場合、選択した値をクリアしたい場合があるということです。私のコードは次のようになります:

private DatePickerDialog datePicker = null;

datePicker = new DatePickerDialog(getContext(), new DateSetListener(), year, monthOfYear, dayOfMonth);
4

3 に答える 3

2

私は単純なダイアログを使用し、その中にDateTimePickerとSETおよびCANCELボタン、または含めたいその他の機能の王様を含めます

実装できるもう 1 つの UI/X ソリューションは、DateTimePicker をオンデマンドで表示することです (ユーザーがボタンをクリックするなど)。

于 2012-12-18T11:50:49.193 に答える
0

私はそれが遅い解決策であることを知っています(私はこれに時間を無駄にしたくありません) 。

import android.app.DatePickerDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.os.Bundle;
import android.widget.DatePicker;

import java.lang.reflect.Field;

/**
 * Created by root on 12/8/15.
 */
public class DatePickerDialogFragment extends DatePickerDialog {

public DatePickerDialogFragment(Context context, OnDateSetListener callBack, int year, int monthOfYear, int dayOfMonth) {
    super(context, null, year, monthOfYear, dayOfMonth);
    initializePicker(callBack);
}

public DatePickerDialogFragment(Context context,int theme,OnDateSetListener callBack,int year, int monthOfYear, int dayOfMonth)
{
    super(context, theme, null, year, monthOfYear, dayOfMonth);
    initializePicker(callBack);
}

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setCancelable(false);
}

@Override
public void onBackPressed() {
    super.onBackPressed();
    dismiss();

}

private void initializePicker(final OnDateSetListener callback) {
    try {
        //If you're only using Honeycomb+ then you can just call getDatePicker() instead of using reflection
        Field pickerField = DatePickerDialog.class.getDeclaredField("mDatePicker");
        pickerField.setAccessible(true);
        final DatePicker picker = (DatePicker) pickerField.get(this);
        this.setButton(DialogInterface.BUTTON_NEGATIVE, getContext().getText(android.R.string.cancel), (OnClickListener) null);
        this.setButton(DialogInterface.BUTTON_POSITIVE, getContext().getText(android.R.string.ok),
                new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        picker.clearFocus(); //Focus must be cleared so the value change listener is called
                        callback.onDateSet(picker, picker.getYear(), picker.getMonth(), picker.getDayOfMonth());
                    }
                });
    } catch (Exception e) { /* Reflection probably failed*/ }
}
}
于 2015-08-12T06:17:44.817 に答える
0

DatePickerDialog と TimePickerDialog に問題があります (問題 #34833)。この問題を回避するための回避策としてカウンターを使用できます。

于 2013-01-31T09:15:39.030 に答える