2

当按下按钮时,我有以下代码可以执行某些操作。我希望能够让按钮为 2013 年 3 月 3 日上午 10:00 创建一个日历事件。感谢所有帮助。

代码:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    //Button button = (Button)findViewById(R.id.button1);
   // button.setOnClickListener(this);
    final CheckBox checkBox = (CheckBox) findViewById(R.id.checkBox1);
    final CheckBox checkBox2 = (CheckBox) findViewById(R.id.checkBox2);


    final Button button = (Button) findViewById(R.id.button1);
    button.setOnClickListener(new View.OnClickListener()
    {
        public void onClick(View v) {


             if (checkBox.isChecked()) {
4

2 回答 2

3

您可以在 Intent 的帮助下打开日历。

下面是在日历应用程序中设置事件的代码。您只能打开填充了默认事件字段的日历活动。

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("title", "Some title");
intent.putExtra("description", "Some description");
intent.putExtra("beginTime", eventStartInMillis);
intent.putExtra("endTime", eventEndInMillis);
startActivity(intent);

将上面的代码放在按钮的 onclick 监听器中。

此外,您必须在 manifest.xml 中添加这些日历权限:

android:name="android.permission.READ_CALENDAR"
android:name="android.permission.WRITE_CALENDAR"
于 2012-08-17T02:36:11.803 回答
2

Android Coder 提供了一种简单的方法来完成此任务

此外,您必须在 manifest.xml 中添加使用日历事件的权限

android:name="android.permission.READ_CALENDAR"

android:name="android.permission.WRITE_CALENDAR"

于 2012-08-17T02:44:06.277 回答