Android隐藏和删除imageview中的图像
如何在android中的imageview中删除图像以及如何隐藏整个图像。
这里我通过下面的代码在 imageview 中放置了一张图像。
answerState1.setBackgroundResource(R.drawable.correct);
我不知道如何删除或隐藏图像。而且我对 Android 开发完全陌生。
How to remove a image in imageview in android and also how to hide the entire image.
Here I have placed an image in imageview by the below code.
answerState1.setBackgroundResource(R.drawable.correct);
I don't know how to remove or hide the image. Also I am entirely new to android development.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用以下方法调用来设置图像的可见性:
在 UI 中,您还可以执行如下操作:
You can set the visibility of an image with the following method calls:
In UI, you can also do something like the following:
试试这个
imageview.setVisibility(ImageView.INVISIBLE);
try this
imageview.setVisibility(ImageView.INVISIBLE);
您可以使用
answerState1.setVisibility(View.INVISIBLE);
使视图不可见,并使用answerState1.setVisibility(View.Gone);
使视图不可见。You can use
answerState1.setVisibility(View.INVISIBLE);
to make view invisible andanswerState1.setVisibility(View.Gone);
to make the view invisible.尝试以下代码:
Try the following code: