can you help me by sharing your knowledge on how to draw a small rectangle on top of image in android.
I have main.xml and there are some widgets. right at top, there is a imag
You can use ImageView... I've actually done just that in one of my apps. Then you can override the OnDraw() method, which passes in a Canvas you can use to draw on...
I used this as a reference:
Draw onto an ImageView