图像按钮上的单击效果

发布于 2024-12-07 09:57:53 字数 408 浏览 1 评论 0原文

我创建了图像按钮而不是普通按钮。单击图像按钮时,我想要像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

青萝楚歌 2024-12-14 09:57:53

试试这个代码

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:drawable="@drawable/camera" />
    <item android:state_pressed="false" android:drawable="@drawable/camera" />
    <item android:state_pressed="true" android:drawable="@drawable/camera_active" />
</selector>

Try this code

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:drawable="@drawable/camera" />
    <item android:state_pressed="false" android:drawable="@drawable/camera" />
    <item android:state_pressed="true" android:drawable="@drawable/camera_active" />
</selector>
无边思念无边月 2024-12-14 09:57:53

您可以使用具有自定义背景的 Button,而不是直接使用 ImageButton

这是示例 教程

Instead of using directly ImageButton you can use Button with customized background

Here is the sample tutorial.

溇涏 2024-12-14 09:57:53

使用按钮图像创建 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="@color/transparent" />
<item 
  android:drawable="@drawable/closebutton" />
</selector>

在值中添加颜色文件夹

<?xml version="1.0" encoding="utf-8"?>
<resources>    
   <color name="yellow">#ffffff00</color>  
</resources>

create xml file using the button image like this

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item 
  android:state_pressed="true" 
  android:drawable="@color/transparent" />
<item 
  android:drawable="@drawable/closebutton" />
</selector>

add the color folder in values

<?xml version="1.0" encoding="utf-8"?>
<resources>    
   <color name="yellow">#ffffff00</color>  
</resources>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文