九个补丁图像看起来像素化
我在布局中使用了九个补丁图像,用于按钮、文本字段和表单背景。所有 xxx.9.png 文件都位于 drawable-hdpi 文件夹中,就像常规图像一样,但它们看起来仍然是像素化的。
顶部的 ImageView 有一个常规位图,下面的 ImageView 使用九个补丁位图。您可以看到九个补丁位图被缩放到较低的密度。我该如何解决这个问题?
I use several nine patch images in my layout, for buttons, text fields and form backgrounds. All of the xxx.9.png files are in the drawable-hdpi folder, just like the regular images, yet they still look pixelated.
The ImageView at the top has a regular bitmap and the lower ImageView uses a Nine Patch bitmap. You can see that the Nine Patch bitmap is scaled to a lower density. How do I fix that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该将 9 个补丁图像放入 nodpi 文件夹中,除非您希望也缩放/拉伸不可拉伸的区域。
You should put 9 patch images in the nodpi folder, unless you want the non-stretchable area to be scaled/stretched also.
啊,事情很混乱,因为我在自定义视图中的某个地方调用了canvas.setDensity( 480 ) 。这导致了这个问题。
Ah, it was messed up because I was calling canvas.setDensity( 480 ) somewhere in a custom view. That caused this problem.