我对按钮的自定义背景有疑问。这是我的 9 补丁:
在 Draw 9-patch 中相同:
最后,在设备屏幕上显示结果:
这就是代码,描述了我的按钮:
布局:
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="New Button"
style="@style/button"/>
风格:
<style name="button">
<item name="android:background">@drawable/button</item>
<item name="android:textColor">@color/button_text</item>
</style>
@drawable/button
:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false" >
<bitmap android:src="@drawable/button_test"/>
</item>
</selector>
res文件夹中drawable的文件名是button_test.9.png
你有什么想法为什么它不起作用?谢谢你。