图像背景 - 如何重复图像作为背景而不是拉伸它
我有一张图像想用作某些布局的背景。 问题是图像包含斜线纹理,因此如果我使用 1 像素宽度图像或 9 补丁,图像会被拉伸并且纹理会抽搐,因此我可以将斜线视为纬度线。 我看到他的android模拟器在进度条不确定动画中使用了类似的纹理,是否有一个特殊/简单的定义来命令背景图像重复自身而不是拉伸?有没有办法用 9 个补丁来做到这一点,因为最终我还需要将角变成圆角。 感谢您的帮助。
I have an image I want to use as a background to some layout.
the problem is the image contains a texture of slant lines, so if i use a 1 pixel width image or a 9 patch the image is stretched and the texture is Twitching, so i can see the slant lines as latitude lines.
I saw that he android emulator uses a similar texture in the progress bar indeterminate animation, is there a special/simple definition to order the background image to repeat itself rather than stretch? is there a way to do it with 9 patch, cause eventualy i also need the corners to be round.
thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想看看 Xandy 回答的平铺模式。这是我使用的一些代码供您参考。
repeat.xml
main.xml
You would probably want to take a look at tile mode as Xandy answered. Here is some code for your reference which is used by me.
repeat.xml
main.xml
使用 android:tileMode。
use android:tileMode.