Is there a way to write in the standard calendar from the smartphone from my gwt application.
Which that I can make a new entry in the calendar from the gwt application.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have a native application that you GWT application is running inside, then the easiest way would be to expose a native class to GWT via javascript injection.
For example with Android, your GWT application would run inside a WebView with a Browser instance. This browser can provide methods to you GWT application like this:
The methods in
GwtJavaJSImplwould then be accessible from GWT by calling the JavaScript methodinjected.methodXxx()like this:If you don’t have a native application on your smartphone, you could generate a calendar file (e.g.
event.ics) which you then could let the smartphone download. That file would then be automatically added to the device’s calendar.