Vrashabh Irde
Vrashabh Irde
To be clear I see green markers for the events I create on the default android calendar app that google provides. I am not able to create any event from...
I think the DNA strands error has to do with the internal Calendar utils function itself found here: https://github.com/android/platform_packages_apps_calendar/blob/master/src/com/android/calendar/Utils.java -- createDNAStrands
Replacing dispatchTouchEvent with @Override public boolean onTouchEvent(MotionEvent event) { boolean handled = mGesture.onTouchEvent(event); return handled; } and ``` @Override public boolean onInterceptTouchEvent(MotionEvent ev) { switch( ev.getActionMasked() ){ case MotionEvent.ACTION_DOWN: mInitialX...