I am coding a splashscreen. My app must work with tablet and phones so my splashcreen is a landscape. On phones, the image's ratio is changed. How can I crop the left and right border while centering the image ?
This is my code :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<bitmap android:src="@drawable/background"
android:gravity="fill_vertical|center_horizontal"/>
</item>
</selector>