Seekbar 自定义,无需重复
我有自定义的 Seekbar,但背景会重复,我想将其删除。
这是我要自定义 SeekBar 的文件:
<item android:id="@android:id/background"
android:drawable="@drawable/slider_background">
</item>
I have the Seekbar that I customized but the background is going to do the repetition and I want to remove it.
This is my file where I am going to customize the SeekBar:
<item android:id="@android:id/background"
android:drawable="@drawable/slider_background">
</item>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了拉伸位图并避免重复,您必须将图像转换为 9 块。请按照以下指南从图像创建 .9.png 文件:
http://developer .android.com/tools/help/draw9patch.html
然后,您必须在 xml 文件中将其作为九个补丁进行引用:
因为这回答了您的问题并可以帮助其他人,请单击下一步的绿色复选标记让它接受 回答。
In order to strech your bitmap, and avoid the repetition, you must transform your image into a 9-patch. Follow the guide below to create your .9.png file from your image :
http://developer.android.com/tools/help/draw9patch.html
Then, you must reference it as a nine-patch in your xml file :
As this answers your question and can help other people, please click the green check mark next to it to accept the answer.