我尝试自定义搜索栏,如下所示
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" />
答案 0 :(得分:0)
我已经尝试过这样做了,但我的反应时间遇到了问题。不得不移动边距需要大量的处理能力和时间。它接近400-500ms。所以我不得不删除它。
但是,这是我采取的步骤: 首先,我建议创建一个框架布局来同时保存SeekBar和TextView。然后,根据进度条的百分比,您可以设置TextViews布局属性边距。 这有意义吗?
如果你想要特定的代码,我可以得到你,但谷歌也做得很好。 :)
选项B: Android seekbar with custom thumb having dynamic text inside it