Search code examples
androidscreensplash-screennexus-4

Splash screen is stretching in Nexus 4


I pasted my code below: problem is the image is stretching......

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".SplashScreen"
    android:background="@color/black" >

    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:src="@drawable/splashscreen"/>

</RelativeLayout>

Solution

  • you should use 9 page image . You can generate 9-patch images from 9-path generator..

    after that modify your imageView like as

    <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="fitCenter"
            android:src="@drawable/splashscreen"/>