I have created the following Nine-Patch PNG Image

but when I add it as a background for a button I have got the following result :

as you can see the picture not fill all the button Background !
here is the XML Layout File :
<LinearLayout 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" android:orientation="vertical" > <Button android:id="@+id/btn" android:layout_width="match_parent" android:layout_height="100dp" android:background="@drawable/ninepatchimage" android:text="Click ME" /> </LinearLayout> can any one tell me why ??
