日历显示事件的旧日期?

时间:2012-04-26 06:23:29

标签: android calendar

我正在开发一个Android应用程序,我需要提供一些日历功能,如添加事件和显示事件, 插入没有问题我正在使用以下代码

              Date date = new Date();

        System.out.println("dateselected is    " + dateselected);
        try {

            date = new SimpleDateFormat("yyyy-MM-dd").parse(dateselected);
        } catch (java.text.ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        startTime = date.getTime();

        System.out.println("startTime is    " + startTime);

        Calendar cal = Calendar.getInstance();       
        Intent intent = new Intent(Intent.ACTION_EDIT);  
        intent.setType("vnd.android.cursor.item/event");
        intent.putExtra(" THE TESTING EVENT ");
        intent.putExtra("beginTime", startTime);

        intent.putExtra("endTime", startTime+60*60*1000);
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        finish();
        startActivityForResult(intent,0);

以这种方式显示事件

intent.setData(Uri.parse("content://com.android.calendar/events/" + 

                    String.valueOf(eventid[pos])));

            System.out.println(" >8 "); 
            //Android 2.1 and below.
            //intent.setData(Uri.parse("content://calendar/events/" + String.valueOf(calendarEventID)));    


            startActivity(intent);

但问题在于无论我选择了哪个日期,无论事件ID是什么 它只显示一个日期和时间,

5:30 am , 1 January 1970

虽然事件标题是正确的

我正在测试三星galaxy pop android 2.2.1

我该怎么做才能消除此错误

1 个答案:

答案 0 :(得分:0)

我已经从这里获得了这个问题的解决方案

How to using intents to view calendar data?

并使用以下代码 刚刚传递了额外的意图,以显示所选日期的日历事件。

intent.putExtra("beginTime", beginMilliTS);
intent.putExtra("endTime", endMilliTS);