gpt4 book ai didi

android - onCreate 方法内的屏幕截图在 android 中不起作用

转载 作者:太空狗 更新时间:2023-10-29 15:15:24 25 4
gpt4 key购买 nike

我在 Android 应用程序中工作,我想在重写方法 onCreate() 中捕获当前 Activity 的屏幕。当我在 Overrided 方法 onCreate() 中编写捕获屏幕的代码时,位图返回 null。但是当我在同一个 Activity 中单击按钮调用相同的代码时,位图返回正确的值。请更正我的代码以在我的 ocCreate() 方法本身中按位图返回。

我的代码是:

View v1 = findViewById(R.id.printpreviewBaseScrollView);
v1.setDrawingCacheEnabled(true);
Bitmap bmv = v1.getDrawingCache();

最佳答案

View printlayout = findViewById(R.id.printpreviewBaseRelativeLayout);
printlayout.setDrawingCacheEnabled(true);

printlayout.measure(printlayout.getMeasuredWidth(),
printlayout.getMeasuredHeight());

printlayout.layout(0, 0, 700, 1755);



Log.e("width", "" + printlayout.getMeasuredWidth());
Log.e("hight", "" + printlayout.getMeasuredHeight());

printlayout.buildDrawingCache(true);

bitmap = Bitmap.createBitmap(printlayout.getDrawingCache());
printlayout.setDrawingCacheEnabled(false); // clear drawing cache

关于android - onCreate 方法内的屏幕截图在 android 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13173022/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com