Android - 如何在有意图的情况下调用日历时指定位置?

时间:2011-03-18 13:46:52

标签: java android calendar android-intent

我正在创建一个Intent来从我的应用程序创建一个新的日历事件。我正在试图弄清楚如何在日历项目的“Where”字段中指定应该是什么,以便我可以在其中放置一个地址,但我尝试过的是不起作用。有谁知道

//Create our intent
Intent intent = new Intent(Intent.ACTION_EDIT); 
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("title", myTitle);
intent.putExtra("description", myDescription);
//Trying to get the where to wrk
intent.putExtra("where", myAddress);
startActivity(intent);

我已尝试设置“where”,如上所示,但这不起作用。

1 个答案:

答案 0 :(得分:27)

位置字段是“eventLocation”

intent.putExtra("eventLocation", myAddress)