我有两张图片,我需要将它们放在另一张图片上,这可以使用FrameLayout
制作,就像我在this answer中找到的那样。但是,我需要将该布局设置为我的tabTitle之一的背景,如何才能完成?
答案 0 :(得分:2)
您可以通过编程方式执行此操作,
myFrameLayout.setDrawingCacheEnabled(true);
myFrameLayout.buildDrawingCache();
Bitmap bitmap = myFrameLayout.getDrawingCache();
myAnotherLayout.setBackgroundDrawable(new BitmapDrawable(bitmap)));