我们可以使用整数值吗
int month = 12;
int year = 2013;
int day = 03;
在日期选择器上设置值?
例如:在使用Bundle args
toargs.putInt("year", calendar.get(Calendar.YEAR));
设置日期选择器的年份时,我们不能args.putInt("year", year);
改用(即使我已经收到错误)?
我问这个是因为我需要获取一个字符串数据,例如
String date = "12/03/2013"
指示项目的日期并将其显示在 datePicker 上。
请帮忙。