I use PhoneGap/Cordova to create an Android app with a splash screen that contains a centered logo.
Here is what I did:
In my Android Manifest.xml I added
<preference name="SplashScreen" value="splash" />
<preference name="SplashScreenDelay" value="5000" />
Then I used the nine-path image generator here to create the 9-patch images for the splash screen. The purpose is to have a logo centered in the center all the time. When uploading the image it looks like the following. I kept the edit mode "stretch regions".
The problem is that the splash image is stretched all the time. This means that the logo (the blue box) is disproportioned.
I checked the solutions here Cordova/PhoneGap 9-patch splash screen but it did not help.
How can I use 9-patch images as a splash screen on Android such that the logo is always in the center of the screen and not stretched?