gpt4 book ai didi

在 Eclipse 中悬停时按钮的 Android 颜色变化

转载 作者:行者123 更新时间:2023-11-29 15:27:03 25 4
gpt4 key购买 nike

我正在eclipse 中开发android 项目。Android 版本是2.3.3。我已经设置了我的按钮颜色,当它被点击时我也可以改变按钮的颜色但是当我的光标在按钮上时,按钮颜色必须改变并且随着光标移开它应该具有它之前的颜色,就像悬停在按钮。但我无法弄清楚诸如 state_pressed 之类的 Action 事件,所以我需要那个 Action 事件。如果有人可以,请帮助我。

最佳答案

您可以使用 xml 来更改按钮的状态,也请引用此链接 Change color of button

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<!-- Button Focused-->
<item android:state_focused="true"
android:state_pressed="false"
android:drawable="@drawable/login_hover"
/>

<!-- Button Focused Pressed-->
<item android:state_focused="true"
android:state_pressed="true"
android:drawable="@drawable/login_hover"
/>

<!-- Button Pressed-->
<item android:state_focused="false"
android:state_pressed="true"
android:drawable="@drawable/login_hover"
/>

<!-- Button Default Image-->
<item android:drawable="@drawable/login_bg"/>


</selector>

关于在 Eclipse 中悬停时按钮的 Android 颜色变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11238790/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com