Android 获得完整的位图视图

发布于 2024-12-09 01:30:44 字数 561 浏览 0 评论 0原文

可能的重复:
Android 2.1 View 的 getDrawingCache() 方法始终返回 null

我有一个布局,我想保存位图。

如果我的布局比屏幕小,一切都很好。但如果我的布局更大,则位图 (b) 为空。

这是我的代码:

layout.setDrawingCacheEnabled(true);

int wt =  layout.getMeasuredWidth(); 
int ht =  layout.getMeasuredHeight();
layout.layout(0, 0, wt, ht);

Bitmap b = layout.getDrawingCache(true);

那么如何才能将整个视图作为位图获取呢?

Possible Duplicate:
Android 2.1 View's getDrawingCache() method always returns null

I hava a Layout which I want to save an bitmap.

If my Layout is smaller than the screen everything is fine. But if my Layout is bigger, the bitmap (b) is null.

This is my code:

layout.setDrawingCacheEnabled(true);

int wt =  layout.getMeasuredWidth(); 
int ht =  layout.getMeasuredHeight();
layout.layout(0, 0, wt, ht);

Bitmap b = layout.getDrawingCache(true);

So how can I get the whole View as an Bitmap?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漆黑的白昼 2024-12-16 01:30:44

如果 buildDrawingCache 不应该包含您的视图,因为它比屏幕大,因为仅绘制视图的可见部分,并且缓存仅保存绘制的内容。

你可以尝试一下这个方法。这里将位图传递给视图,以便将视图绘制到位图上。
http://www.brighthub.com/mobile/google-android/articles /30676.aspx

buildDrawingCache should not have your view if it is bigger than the screen as the visible portion of the view is only drawn and the cache holds only what is drawn.

You may try this method. Here a bitmap is passed to the view, so that the view is drawon to the bitmap.
http://www.brighthub.com/mobile/google-android/articles/30676.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文