Android hide and removing the image in imageview
问题 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. 回答1: You can set the visibility of an image with the following method calls: answerState1.setVisibility(View.GONE); // hide image (make the view gone) answerState1.setVisibility(View.VISIBLE); // make