我尝试创建这样的自定义搜索栏: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" />
我尝试了很多不同的方法。但我无法在所有屏幕上实现稳定性。 怎么办呢?
答案 0 :(得分:0)
答案 1 :(得分:0)