I would like to know how I could put objects on an image on Android. An example would be to have the photo and on it put other images as circles, triangles etc ...
How could I do this on android?
I would like to know how I could put objects on an image on Android. An example would be to have the photo and on it put other images as circles, triangles etc ...
How could I do this on android?
The good way might be maybe using Canvas
:
Drawable d = getResources().getDrawable(R.drawable.foobar);
d.setBounds(left, top, right, bottom);
d.draw(canvas);