关于android日历

时间:2011-10-15 14:11:28

标签: java android

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime",XXX);
intent.putExtra("allDay",false);
intent.putExtra("eventLocation",XXX);   
intent.putExtra("description","XXX");       
startActivity(intent);

当我在本地加载此应用程序的日历显示在所有手机中。我们将应用程序上传到Android市场。但日历没有显示任何Android手机。

怎么了?

0 个答案:

没有答案