作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Activity 中使用 DatePicker 对话框供用户选择日期。我想要做的是在 textView 中显示选定的日期。任何人都可以帮助我如何获取选定的日期然后相应地显示它。提前致谢!
以下是我用来实现 DatePicker 对话框的代码:
public static class DatePickerFragment extends DialogFragment
implements DatePickerDialog.OnDateSetListener {
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
// Use the current date as the default date in the picker
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);
// Create a new instance of DatePickerDialog and return it
return new DatePickerDialog(getActivity(), this, year, month, day);
}
public void onDateSet(DatePicker view, int yyyy, int mm, int dd) {
// Do something with the date chosen by the user
}
}
public void showDatePickerDialog(View v) {
DialogFragment newFragment = new DatePickerFragment();
newFragment.show(getFragmentManager(), "datePicker");
}
最佳答案
在onDateSet方法中,
String cuurent_date = String.valueOf(c.get(Calendar.DAY_OF_MONTH))
+ "/" + String.valueOf(c.get(Calendar.MONTH) + 1) + "/"
+ String.valueOf(c.get(Calendar.YEAR));
关于Android - 日期选择器 - 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16140306/
我是一名优秀的程序员,十分优秀!