gpt4 book ai didi

android - Seekbar 背景图片不够大

转载 作者:行者123 更新时间:2023-11-29 00:30:08 24 4
gpt4 key购买 nike

我有一个搜索栏,我在它的背景中放了一张有标记的图片。这是背景 enter image description here

但是当我将它添加到我的搜索栏中时,它以这种方式显示

enter image description here

这是 Absolutlayout 中的代码1-我希望它更大。数字必须让用户清楚

<SeekBar
android:id="@+id/seekBar1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_x="11dp"
android:layout_y="68dp"
android:indeterminate="false"
android:max="1000"
android:progress="5"
android:progressDrawable="@drawable/styled_progress"
android:thumb="@drawable/thumbler_small" />

2-另一个问题是:在我看来,背景在重复!!!我该如何阻止它?

谢谢

最佳答案

添加一个父 View 来保存背景,例如 LinearLayout,并将搜索栏的背景放在它的父 View 中,如下所示:

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/your_seekbar_background"
>
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_x="11dp"
android:layout_y="68dp"
android:indeterminate="false"
android:max="1000"
android:progress="5"
android:progressDrawable="@drawable/styled_progress"
android:thumb="@drawable/thumbler_small" />

</LinearLayout>

关于android - Seekbar 背景图片不够大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16249181/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com