图像按钮上的单击效果
我创建了图像按钮而不是普通按钮。单击图像按钮时,我想要像 Android 手机的普通图标单击效果一样的单击效果(单击菜单时,图标的背景将为黄色)。使用以下内容代码 我的代码在单击图像按钮时显示图像。我必须进一步进行哪些更改。
<item android:state_enabled="true"
android:state_pressed="true"
android:drawable="@drawable/production_order" />
android:state_enabled="false"
android:drawable="@drawable/prodution_orders_icon" />
I have created image buttons instead of normal buttons.On click on the image button I want a click effect as in the normal icon click effect(On click of menu the background of the icon will be yellow color) of android phones.Using the following code I code show an image on click of the image button .What changes I have to make further.
<item android:state_enabled="true"
android:state_pressed="true"
android:drawable="@drawable/production_order" />
android:state_enabled="false"
android:drawable="@drawable/prodution_orders_icon" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个代码
Try this code
您可以使用具有自定义背景的 Button,而不是直接使用 ImageButton
这是示例 教程 。
Instead of using directly ImageButton you can use Button with customized background
Here is the sample tutorial.
使用按钮图像创建 xml 文件,如下所示,
在值中添加颜色文件夹
create xml file using the button image like this
add the color folder in values