我目前有一个正在运行的 android 应用程序,我正在 ecrise 中编程,但我想更改 UI 并添加我自己的感觉,但是当我重新调整页面上的按钮时,按钮的轮廓变得非常模糊,我能做什么做什么来解决这个问题?
目前我正在将按钮的背景设置为一个名为 background.xml 的 xml 文件
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:drawable="@drawable/button_pressed" /> <!-- pressed -->
<item android:state_enabled="false"
android:drawable="@drawable/button_disabled"/> <!-- disabled -->
<item android:state_focused="true"
android:drawable="@drawable/button_focused" /> <!-- focused -->
<item android:drawable="@drawable/button_normal" /> <!-- default -->
</selector>
任何解决问题的想法都会受到赞赏。
这是模糊按钮的照片
好的,我已经完成了 9patch,但现在图像内部有一条黑线,有什么想法吗?