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.
我有一个视图,我希望将其内容保存为图库中的图像。我正在使用以下代码:
MediaStore.Images.Media.insertImage(getContentResolver(), view.getDrawingCache(), filename, "desc");
当我在图库中打开图像时,我看到图像中的文本区域周围有很多伪影。
任何想法?
提前致谢。
我找到了答案:
而不是getContentResolver() 使用this.getContentResolver()
这是您活动的上下文。