我正在开发一个在设备中截取屏幕截图的应用程序。在这个应用程序中,我们可以在屏幕上绘制任何内容。为此,我使用Canvas,Paint和Path来做到这一点。
我正在使用此代码截取屏幕截图:
public void saveScreenshot()
{
if (ensureSDCardAccess())
{
Bitmap bitmap = Bitmap.createBitmap(getWidth(), getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
onDraw(canvas);
File file = new File(mScreenshotPath + "/" + System.currentTimeMillis() + ".jpg");
FileOutputStream fos;
try {
fos = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.close();
} catch (FileNotFoundException e) {
Log.e("Panel", "FileNotFoundException", e);
} catch (IOException e) {
Log.e("Panel", "IOEception", e);
}
}
}
/**
* Helper method to ensure that the given path exists.
* TODO: check external storage state
*/
private boolean ensureSDCardAccess() {
File file = new File(mScreenshotPath);
if (file.exists()) {
return true;
} else if (file.mkdirs()) {
return true;
}
return false;
}
但是,当运行以下行时:
Bitmap bitmap = Bitmap.createBitmap(getWidth(), getHeight(), Bitmap.Config.ARGB_8888);
我的应用程序因以下异常而关闭:
11-28 15:05:46.291: E/AndroidRuntime(8209): java.lang.IllegalArgumentException: width and height must be > 0
如果我更改了高度和宽度,则会截取屏幕截图,但它是空的:
为什么会这样?我做错了什么?
答案 0 :(得分:18)
你可以这样做,
为您的主要版面设置ID&在屏幕上显示内容后,在一些Listener说按钮单击或菜单项或任何此类监听器上写下面的代码(确保在显示布局后调用这些行,否则它将给出一个空白屏幕)。
View content = findViewById(R.id.myLayout);
content.setDrawingCacheEnabled(true);
getScreen(content);
方法getScreen(内容)
private void getScreen(View content)
{
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();
}
}
也不要添加将文件写入SDCard的权限。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE">
</uses-permission>
答案 1 :(得分:3)
例外情况是因为您创建的Bitmap
的高度和宽度零
尝试下面的代码来获取高度和宽度
Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
如果无法访问getWindowManager
Display display = ((WindowManager) context.getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
答案 2 :(得分:0)
getWidth(),getHeight()需要用上下文调用,如果你在Activity之外尝试它会失败。试试getApplicationContext.getWidth()。
答案 3 :(得分:0)
你能展示更多代码吗?看起来你正在调用宽度和高度没有正整数值。您可以通过打印宽度和高度值来调试它。
答案 4 :(得分:0)
我遇到了类似的问题,解决方案是:
在你的视图被淹没之前你会得到宽度和高度,所以首先检查宽度或高度等于零:
if (getWidth() == 0 || getHeight() == 0) {
initRemote(remote);
isViewInitialized=false;
}
isViewInitialized是一个成员值。
然后将此代码放入OnSizeChanged
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
if(!isViewInitialized&&){
// this is the right place to take snapshot :)
}
}
答案 5 :(得分:-1)
我已将截屏代码包装到一个非常简单的库中。它允许您截取屏幕截图并将其存储到磁盘中。