You can create a framelayout as parent and add two imageviews as it's child. then add the images in imageviews and do the following
View v = (FrameLayout)findViewById(R.id.parent) v.setDrawingCacheEnabled(true); Bitmap bm = v.getDrawingCache(); The Above bitmap is a merged one. Use it for your purposes. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

