gpt4 book ai didi

android - 如何在onTouch 中改变图像的颜色?

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

在我的应用程序中,我有一张黑白图像,现在想要将黑白图像更改为彩色图像,就像我点击该图像时只有那部分变成彩色的

谢谢

最佳答案

尝试拍摄两张不同的图像,一张是正常图像,另一张是焦点图像

main.xml代码:

<ImageView 
android:id="@+id/emailsendimage"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:clickable="true"
android:focusable="true"
android:src="@drawable/sendchat_normal_icon" />

下一个代码文件:

 Submit.setOnFocusChangeListener(new OnFocusChangeListener() {

public void onFocusChange(View v, boolean hasFocus) {
// TODO Auto-generated method stub
if(hasFocus){
Submit.setImageResource(R.drawable.sendchat_over_icon);
}else{
Submit.setImageResource(R.drawable.sendchat_normal_icon);
}
}
});

关于android - 如何在onTouch 中改变图像的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4757801/

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