0

我尝试像这样创建一个自定义搜索栏:http: //i.stack.imgur.com/8B0Q8.png

但我遇到了这个问题:http: //i.stack.imgur.com/rcQG7.png

我使用这个项目来动态更改文本:github.com/Amit-Gupta26/AndroidCustomSeekBar

我的布局代码在这里:

 <RelativeLayout
 android:id="@+id/layout_seekbar"
 android:layout_width="match_parent"
 android:layout_height="0dp"
 android:layout_weight="1"
 android:background="@drawable/seekbar_bg" >

 <SeekBar
     android:id="@+id/seekbar"
     style="@style/CustomSeekBar"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:layout_alignParentLeft="false"
     android:layout_alignParentTop="false"
     android:layout_centerHorizontal="true"
     android:layout_centerVertical="true" />

我尝试了许多不同的方法。但我无法在所有屏幕上实现稳定性。怎么能做到这一点?

4

2 回答 2

0

在查看了您面临的问题后,我相信您的问题不是如何创建自定义的搜索栏,而是如何单独控制拇指大小和栏的大小,例如在无需制作栏或结尾的情况下使拇指更大大,我知道你必须看看这里这里这里

于 2014-09-29T08:25:21.983 回答
0

我认为这篇文章会帮助你:

自定义搜索栏

您还需要使用 9patch 图像

于 2014-09-29T07:37:24.683 回答