在 Android 中打开日历

发布于 2024-10-18 17:15:28 字数 29 浏览 2 评论 0原文

如何在按钮单击上打开日历并获取可单击的日期。

How to open Calendar on Button Click and get clickable Date.

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

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

发布评论

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

评论(2

清音悠歌 2024-10-25 17:15:28

看看这个: http://www .developer.com/ws/article.php/3850276/Working-with-the-Android-Calendar.htm

编辑:

要从按钮单击事件打开日历,请将此代码添加到 onClick 方法中:

Intent i = new Intent();

//Froyo or greater (mind you I just tested this on CM7 and the less than froyo one worked so it depends on the phone...)
cn = new ComponentName("com.google.android.calendar", "com.android.calendar.LaunchActivity");

//less than Froyo
cn = new ComponentName("com.android.calendar", "com.android.calendar.LaunchActivity");

i.setComponent(cn);
startActivity(i);

check this out: http://www.developer.com/ws/article.php/3850276/Working-with-the-Android-Calendar.htm

EDIT:

To open calendar from button click event add this code to onClick method:

Intent i = new Intent();

//Froyo or greater (mind you I just tested this on CM7 and the less than froyo one worked so it depends on the phone...)
cn = new ComponentName("com.google.android.calendar", "com.android.calendar.LaunchActivity");

//less than Froyo
cn = new ComponentName("com.android.calendar", "com.android.calendar.LaunchActivity");

i.setComponent(cn);
startActivity(i);
痞味浪人 2024-10-25 17:15:28

尝试使用 CalendarView 小部件,请参阅文档此处

这不是一个对话框,因此您必须创建一个对话框,将其包裹在 CalendarView 周围并自行启动。

Try using the CalendarView widget, see docs here

This isn't a dialog, so you'd have to create a dialog, wrap it around a CalendarView and launch it yourself.

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