Adding Calendar Event from WebView

Issue I am following this tutorial to made adding of calendar event from WebView possible. I understand that the method is using shouldOverrideUrlLoading for url date:. public boolean shouldOverrideUrlLoading (WebView view, String url) { if (url.startsWith(“date:”)) { Log.d(this.getClass().getCanonicalName(),url); Calendar beginCal

Continue reading