In my application, I place button to navigate the user to one particular location. When user clicks the navigate button, this code will get executed and opens the Google Maps application to show the turn by turn navigation.
Uri gmmIntentUri = Uri.parse("google.navigation:q="+"11.545526,60.245177");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
Is it possible to hide the splash screen of Google Maps or show other image over it? I need them to show the navigation map directly without showing the Google Maps splash screen.
Thank You