我创建了以下九个补丁 PNG 图像
但是当我将它添加为按钮的背景时,我得到了以下结果:
如您所见,图片未填充所有按钮背景!
这是 XML 布局文件:
<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>
谁能告诉我为什么?