在 Android 中从 LinearLayout 创建位图时获取空白文件
我正在尝试捕获文件的签名。我在 LinearLayout 上“绘制”签名,然后尝试将布局转换为位图并将其压缩到文件中。问题在于,它会在将位图保存到文件之前不断清除屏幕上的签名,从而导致文件空白。
xml 代码和 java 代码位于 http://zumbrun.org/android。
感谢您提供的任何帮助。
I'm trying to capture a signature to a file. I "paint" the signature on a LinearLayout and I try to convert the layout to a bitmap and compress it to a file. The problem is that it keeps clearing the signature off the screen right before it saves the bitmap to the file, resulting in a blank file.
The xml code and java code are at http://zumbrun.org/android.
Thanks for any help that can be offered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么你要抓取
LinearLayout
的ImageCache而不是signature
对象?我怀疑那是你的问题。Why are you grabbing the ImageCache of the
LinearLayout
and not thesignature
object? I suspect that is your problem.