Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如标题所说,getDrawingCache 函数返回一个宽度和高度都设置为-1 的位图。我看到了几篇关于函数返回 null 的帖子,但不是 -1 的维度。谢谢你的帮助。
确保view.setDrawingCacheEnabled(true)在创建布局后调用,并view.buildDrawingCache();在获取缓存之前调用。
view.setDrawingCacheEnabled(true)
view.buildDrawingCache();
现在好了。问题出在我的坐标翻译上……