【发布时间】:2014-11-20 11:43:15
【问题描述】:
我尝试自定义搜索栏,如下所示
But problem is that
-thumb image not set with text
-thumb position can not set above seekbar.
-android:progressDrawable should not repeat as below
我的代码如下:
<SeekBar
android:id="@+id/volume_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:max="100"
android:progress="20"
android:progressDrawable="@drawable/bar"
android:secondaryProgress="0"
android:thumb="@drawable/greenarrow" />
【问题讨论】:
-
对绿色箭头使用另一个视图,并通过使用不可见的拇指根据搜索栏更改其边距来移动它
-
感谢回答。你能解释一下如何用拇指移动自定义视图吗?