I am trying to build Splash Screens the Right Way like this https://medium.com/@ssaurel/create-a-splash-screen-on-android-the-right-way-93d6fb444857 for that i have to place my app icon .png file inside a drawable layer list as bitmap like this
<item
android:drawable="@color/gray"/>
<item>
<bitmap
android:gravity="center"
android:src="@drawable/logo"/>
</item>
Now how can i resize this bitmap? Thanks...