gpt4 book ai didi

android - 更改图像按钮的图像直到它被按下

转载 作者:太空宇宙 更新时间:2023-11-03 12:01:02 24 4
gpt4 key购买 nike

我希望在我的 android 应用程序中,ImageButton 在按下和释放时更改其图像,而当再次按下并释放时,ImageButton 的图像将变回,该怎么做?我已经用选择器试过了。但它不起作用。请任何人帮助我。谢谢

最佳答案

在drawable文件夹中生成文件a.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/oneImage" />
<item
android:state_pressed="false"
android:drawable="@drawable/secondImage" />
</selector>

并且在您的主文件中::按钮具有以下代码::

<ImageButton android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="anything"
android:id="@+id/first"
android:background="@drawable/a"
android:textColor="#FFFFFF"
android:textStyle="bold"
></ImageButton>

关于android - 更改图像按钮的图像直到它被按下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7443738/

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