采取全局截图

时间:2015-06-12 10:38:26

标签: java android screenshot

我想捕捉我的应用程序的屏幕截图,但我的布局是透明的!所以我也希望出现背景图像(例如android luncher等)。

一开始我抓住了它:

public Bitmap screenshot_menu()
{
    RelativeLayout r1;

    r1 = (RelativeLayout)findViewById(R.id.relativeLayout_MAIN);
    View v1 = r1.getRootView();
    v1.setDrawingCacheEnabled(true);
    Bitmap bm = v1.getDrawingCache();


    return bm;
}

但是这只需要我的RelativeLayout的Buttons,ImageViews,Textviews等屏幕截图。我也希望在后台显示所有内容。我怎样才能做到这一点?

0 个答案:

没有答案