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.
我正在尝试将视图转换为位图。在模拟器中,我的程序工作正常并按预期运行,但是当我在 Device 中运行相同的代码时,它会在特定行给出空指针异常:
Bitmap b = Bitmap.createBitmap(view.getDrawingCache());
其中 view 是具有当前 Activity 布局的 RelativeLayout 对象。有人可以指导我如何解决这个问题。谢谢。
measure在layout使用getDrawingCache(). _ 否则它将返回 null。
measure
layout
getDrawingCache()