I have an ImageView in xml like this, and it has drawable globe1 attached in xml :
<ImageView
android:layout_margin="10dp"
android:id="@+id/ppImageView"
android:layout_width="match_parent"
android:layout_height="200dp"
app:srcCompat="@drawable/globe1"
/>
Then I set an image bitmap dynimacally from java in that ImageView :
ppImageView.setImageBitmap(ppBitmap);
So, my question is how do I check that ppImageView contains globe1 or ppBitmap ?
I have checked this question, but, seems that it does not fit my situation.