I am working on android 2.3.3 ++ How do i show an image in arbitrary position (x, y)? I've implemented view.onLongClickListener: to_button.setOnLongClickListener(new OnLongClickListener(){
@Override
public boolean onLongClick(View v) {
showCircle(v, x, y);
return true;
}
Now i would like to show a circle (drawable) on position x, y. How do i go about doing this in the most efficient way.