App is to create a mark on the google map. It creates a mark in the right place with the APIs up to 13.
GeoPoint longpressLocation = getProjection().fromPixels((int)event.getX(),
(int)event.getY());
But in 14+ it increases event.getY by roughly 40 pixels. It's also mentioned in manifest to hide the title bar:
<activity android:name=".Travelalarm" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
Is there any good-looking decision except for simply decreasing it by that number of pixels with Build.VERSION.SDK_INT > 13
?