java - Inserting note into already installed calender application on android phone -


i want create application have:

  • a text field take input user, and
  • a button, which, when clicked, open calendar application available in phone; then, input text added note selected date.

how can done? possible this? if not, how can display calendar in application? guess may layman's question, have started android programming. also, planning make app using html, css , javascript. ok go it? or easier use java , xml files?

i don't know calendar application. here example how start dropbox app:

intent intent = getpackagemanager().getlaunchintentforpackage("com.dropbox.android"); intent.addcategory(intent.category_launcher); try {     startactivity(intent); } catch (exception ex) { } 

you should similar calendar. maybe can provide additional params intent make note insterted specific date.


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -