overlay two images in android to set an imageview
- by John
I am trying to overlay two images in my app, but they seem to crash at my canvas.setbitmap line. what am I doing wrong?
private void test()
{
Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.t);
Bitmap mBitmap2 = BitmapFactory.decodeResource(getResources(), R.drawable.tt);
Bitmap bmOverlay =…