Seekbar 自定义,无需重复

发布于 2024-12-15 19:06:53 字数 202 浏览 0 评论 0原文

我有自定义的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

救星 2024-12-22 19:06:53

为了拉伸位图并避免重复,您必须将图像转换为 9 块。请按照以下指南从图像创建 .9.png 文件:

http://developer .android.com/tools/help/draw9patch.html

然后,您必须在 xml 文件中将其作为九个补丁进行引用:

  <item android:id="@android:id/background">
      <nine-patch android:src="@drawable/seekbar_background"></nine-patch>
  </item>

因为这回答了您的问题并可以帮助其他人,请单击下一步的绿色复选标记让它接受 回答。

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 :

  <item android:id="@android:id/background">
      <nine-patch android:src="@drawable/seekbar_background"></nine-patch>
  </item>

As this answers your question and can help other people, please click the green check mark next to it to accept the answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文