gpt4 book ai didi

Android——截屏

转载 作者:行者123 更新时间:2023-11-29 22:24:20 26 4
gpt4 key购买 nike

我需要截屏并保存截屏。我需要在不使用与 PC 的任何连接或不取消手机根目录的情况下执行此操作。每当触发事件时,我都需要这样做。例如,当游戏中显示广告时......或者当游戏结束并显示蛇的分数等时。你能告诉我我该怎么做吗?我看到了一些教程,他们提供了代码,但这似乎不起作用

private void getScreen()
{
View content = findViewById(R.id.layoutRoot);
Bitmap bitmap = content.getDrawingCache();
File file = new File("/sdcard/test.png");
try
{
file.createNewFile();
FileOutputStream ostream = new FileOutputStream(file);
bitmap.compress(CompressFormat.PNG, 100, ostream);
ostream.close();
}
catch (Exception e)
{
e.printStackTrace();
}
}

最佳答案

你必须 enable the cache首先,在调用 getDrawingCache() 之前。

关于Android——截屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6353279/

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