Can I add a calendar event to my Android from from a website? -
in android app can utilize intent launch add together event activity.
intent intent = new intent(intent.action_edit); intent.settype("vnd.android.cursor.item/event"); intent.putextra("begintime", timestamp); intent.putextra("allday", false); intent.putextra("endtime", timestamp+toadd); intent.putextra("title", name + " @ " + venue); intent.putextra("eventlocation", venue); can somehow on mobile website?
could create vcalendar file like. after download file, insert in calendar app
android android-intent
No comments:
Post a Comment