Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Intent; public class Main { private static final String INTENT_TYPE_EVENT = "vnd.android.cursor.item/event"; public static Intent createNewEventIntent() { Intent intent = new Intent(Intent.ACTION_EDIT); intent.setType(INTENT_TYPE_EVENT); return intent; } }