我正在尝试在android中单击时禁用按钮发光。我希望这不是一个失败的原因。有没有办法实际实现这个?非常感谢您的帮助。
答案 0 :(得分:2)
使用此
public void onClick(View v) {
yourbtnobject.setBackgroundColor(R.color.white);
}
并在value文件夹中创建文件名颜色并写下此
<resources>
<color name="white">#ffffffff</color>
<color name="black">#ff000000</color>
<color name="green">#00C000</color>
</resources>
并在btn上点击您要选择的颜色。
答案 1 :(得分:2)
First create normal_button.xml in res/drawable folder.
In normal_button.xml write the code given below.
Then set the normal_button.xml as a Background for the button from the properties.
`
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<color android:color="@android:color/white" />
</item>
<item >
<color android:color="@android:color/white" />
</item>
</selector>
`