Place objects on image

3

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?

    
asked by anonymous 15.08.2016 / 16:24

1 answer

3

The good way might be maybe using Canvas :

Drawable d = getResources().getDrawable(R.drawable.foobar);
d.setBounds(left, top, right, bottom);
d.draw(canvas);

Details

02.09.2016 / 17:31