0
下面的代碼適用於低於棒棒糖的API,但不適用於棒棒糖和較新的版本。setOnDateChangeListener不適用於棒棒糖
date_picker.getCalendarView().setOnDateChangeListener(new OnDateChangeListener() {
@Override
public void onSelectedDayChange(CalendarView view, int year, int month, int dayOfMonth) {
date.setText((month+1)+"/"+dayOfMonth+"/"+year);
send_date = year+"/"+(month+1)+"/"+dayOfMonth;
}
歡迎來到StackOverflow!請參考[tour](http://stackoverflow.com/tour)並閱讀[我如何提出一個好問題?](http://stackoverflow.com/help/how-to-ask)。然後回來並相應地編輯你的問題。 – Jan