Android 中的日期选择器显示问题

发布于 2024-12-08 06:45:07 字数 991 浏览 0 评论 0原文

我在屏幕上使用日期选择器。但问题是它的显示不正确。请参阅此图片:

在此处输入图片描述 你可以看到那里,岁月正在流逝。为什么会发生这种情况。

编辑:

 @Override
    protected Dialog onCreateDialog(int id) {
        Calendar c = Calendar.getInstance();
        int cyear = c.get(Calendar.YEAR);
        int cmonth = c.get(Calendar.MONTH);
        int cday = c.get(Calendar.DAY_OF_MONTH);
        switch (id) {
        case DATE_DIALOG_ID:
            return new DatePickerDialog(this,  mDateSetListener,  cyear, cmonth, cday);
        }
        return null;
    }
    private DatePickerDialog.OnDateSetListener mDateSetListener = new DatePickerDialog.OnDateSetListener() {
        // onDateSet method
        public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {



            //Toast.makeText(VideoPush.this, "Selected Date is ="+date_selected, Toast.LENGTH_SHORT).show();
        }
    };

当我单击textView时打开此对话框。

Am using Date Picker in my screen. But the problem is its not displaying correctly means.. see this image:

enter image description here
You can see there , year is cutting . Why it is happening.

Edited:

 @Override
    protected Dialog onCreateDialog(int id) {
        Calendar c = Calendar.getInstance();
        int cyear = c.get(Calendar.YEAR);
        int cmonth = c.get(Calendar.MONTH);
        int cday = c.get(Calendar.DAY_OF_MONTH);
        switch (id) {
        case DATE_DIALOG_ID:
            return new DatePickerDialog(this,  mDateSetListener,  cyear, cmonth, cday);
        }
        return null;
    }
    private DatePickerDialog.OnDateSetListener mDateSetListener = new DatePickerDialog.OnDateSetListener() {
        // onDateSet method
        public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {



            //Toast.makeText(VideoPush.this, "Selected Date is ="+date_selected, Toast.LENGTH_SHORT).show();
        }
    };

When i click on textView am opening this dialog.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帥小哥 2024-12-15 06:45:07

我宁愿使用它而不是默认日期选择器:

日期滑块

I would rather use this than Default Date Picker :

Date Slider

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文