对 Android 的搜索栏/进度栏使用可缩放位图
我正在尝试为搜索栏创建自定义外观,并为正常/填充和拇指状态创建图像。但问题是图像没有被 android 缩放,而是只是平铺/裁剪。如何让 Android 缩放给定的图像而不是平铺/剪切?
I am trying to create a custom look for the seekbar, and I created images for normal/filled and the thumb states. But the problem is that the images are not being scaled by android, instead are just tiled/clipped. How can I ask Android to scale the given images instead of tiling/clipping?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用java代码来缩放位图图像。
You can use java code to scale Bitmap images.
您不能要求 Android 为您执行此操作。
图像必须按照您将使用的尺寸创建。
You cannot ask Android to do this for you.
The images must be created in the size(s) you will be using them.