android - 如何修复 seekbar-bar-thumb-centering-issues

标签 android seekbar

我设置了搜索栏的拇指图像,但我的拇指在搜索栏下方看起来很小。如何将拇指设置在搜索栏的正确位置。看一下附图enter image description here

<SeekBar android:id="@+id/PP_Player_SeekBar" 
         android:thumb="@drawable/music_player_playerhead"
         android:paddingLeft="8dip"
         android:paddingRight="8dip"                 
         android:progressDrawable="@drawable/seekbar_drawable_xml_background"
         android:layout_width="236dip"
         android:layout_centerHorizontal="true"
         android:layout_height="wrap_content"
         android:layout_marginTop="47dip"></SeekBar>

谢谢 苏尼尔·库马尔·萨乌

最佳答案

将 minHeight 和 maxHeight 设置为与 seekbar 的高度相同。例如

<SeekBar 
    android:id="@+id/PP_Player_SeekBar"  
    android:thumb="@drawable/music_player_playerhead"
    android:paddingLeft="8dip"   
    android:paddingRight="8dip"                 
    android:progressDrawable="@drawable/seekbar_drawable_xml_background"
    android:layout_width="236dip" 
    android:layout_centerHorizontal="true"
    android:layout_height="wrap_content" 
    android:layout_marginTop="47dip"
    android:minHeight="11dip"
    android:maxHeight="11dip" />

查看以下网址 http://qtcstation.com/2011/05/android-how-to-fix-seekbar-bar-thumb-centering-issues/

关于android - 如何修复 seekbar-bar-thumb-centering-issues,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7404100/

相关文章:

android - 如何找出在 Android Studio/Gradle 中的库中添加了多少方法

android - adb 服务器版本 (40) 与此客户端 (41) 不匹配

android - 以编程方式搜索栏

Android ProgressBar.setProgressDrawable 只能工作一次吗?

java - 如何设置音频与搜索栏播放

android - 服务器上传图片报错如何解决?

android - 我可以在自定义布局中显示图像吗?

android - 在 Android 中使用 Volley 库时数据未发布到服务器

android - 将 Android SeekBar 位置设置为初始触摸时的手指位置

android - AppCompat 样式的 Rangebar(带有两个 Thumbs 的 Seekbar)