To do this, first of all you need to set a tag for your ImageView
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageview1"
android:background="@drawable/bg1"
android:tag="bg1"/>
Now get the image name set in your ImageView by doing the following:
ImageView v = (ImageView)findViewbyId(R.id.img);
String backgroundImageName = String.valueOf(v.getTag());
and this should return the image tag name "bg1" .
Now compare tag names or use them for further process
if( backgroundImageName.equals(bg1))
{
}
else{
}
source
share