嗨我有一個問題是否有無論如何,我可以從包含日期的textView開始datepicker的日期?開始日期字符串日期選擇器日期
這裏是我的代碼:
public void openDatePicker()
{
// Get Current Date
final Calendar c = Calendar.getInstance();
mYear = c.get(Calendar.YEAR);
mMonth = c.get(Calendar.MONTH);
mDay = c.get(Calendar.DAY_OF_MONTH);
final DatePickerDialog datePickerDialog = new DatePickerDialog(rentActivity.this,
new DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(DatePicker view, int year,int monthOfYear, int dayOfMonth)
{
endDate.setText(dayOfMonth + "/" + (monthOfYear + 1) + "/" + year);
}
}, mYear, mMonth, mDay);
datePickerDialog.getDatePicker().setMinDate(System.currentTimeMillis()-1000);
datePickerDialog.show();
}
,幷包含日期字符串是txtDate
感謝您的幫助提前! :D
你可以採取一個TextView的,並在該展會日期選取器 – curiousMind
的點擊@curiousMind先生其實是我想知道就是它。比如說,我有一個包含日期25/1/2016的文本,當我打開日期選擇器時,它將從textview中的日期開始:D –