我尝试像这样创建一个自定义搜索栏: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" />
我尝试了许多不同的方法。但我无法在所有屏幕上实现稳定性。怎么能做到这一点?