「完了」が押されたときにカレンダー アプリケーションを閉じてメイン アプリケーションに戻る方法はありますか? startActivityForResult(intent, int) が使えると思いますが、使い方がよくわかりません。これは私のコードです:
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("title", header);
intent.putExtra("allDay", false);
intent.putExtra("beginTime", startTimeStamp);
intent.putExtra("endTime", endTimeStamp);
intent.putExtra(Events.EVENT_LOCATION, location);
intent.putExtra("description", note);
FragmentCaller.removeFragment(getActivity());
startActivityForResult(intent, 1);