【发布时间】:2019-08-24 06:15:50
【问题描述】:
我创建了以下九个补丁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>
谁能告诉我为什么??
【问题讨论】:
标签: android nine-patch