Seekbar 缩略图剪辑
Seekbar Thumb clipping
我正在用拇指创建自定义搜索栏。
目前看起来是这样的:
http://imgur.com/ofVc7eg
问题:
我用于拇指(椭圆形)的可绘制对象夹在进度条上。
我的代码如下所示:
布局中的Seekbar:
<SeekBar
android:background="@android:color/holo_red_light"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:thumb="@xml/thumb_image"
android:progressDrawable="@xml/progress"
android:max="100"/>
progress.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#ff9d9e9d"
android:centerColor="#ff5a5d5a"
android:centerY="0.75"
android:endColor="#ff747674"
android:angle="270"
/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#80ffd300"
android:centerColor="#80ffb600"
android:centerY="0.75"
android:endColor="#a0ffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#FFD700"
android:centerColor="#FFB90F"
android:centerY="0.75"
android:endColor="#FFA500"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>
thumb_image.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
android:color="@android:color/transparent">
<solid android:color="@android:color/black" />
<size
android:width="30dp"
android:height="30dp" />
</shape>
尝试
android:splitTrack="false"
在搜索栏中
参考这个帖子
Custom seekbar thumb not transparent on Lollipop API21
我已经使用 android:thumbOffset="-0dp"
并分配了自定义缩略图并且工作正常。实施了许多解决方案,但由于自定义拇指可绘制对象,它们无法完美运行,但这个解决方案简单明了,改动很少。
对我有用的是在父视图上设置 android:clipChildren="false"
。
我正在用拇指创建自定义搜索栏。
目前看起来是这样的: http://imgur.com/ofVc7eg
问题: 我用于拇指(椭圆形)的可绘制对象夹在进度条上。
我的代码如下所示:
布局中的Seekbar:
<SeekBar
android:background="@android:color/holo_red_light"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:thumb="@xml/thumb_image"
android:progressDrawable="@xml/progress"
android:max="100"/>
progress.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#ff9d9e9d"
android:centerColor="#ff5a5d5a"
android:centerY="0.75"
android:endColor="#ff747674"
android:angle="270"
/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#80ffd300"
android:centerColor="#80ffb600"
android:centerY="0.75"
android:endColor="#a0ffcb00"
android:angle="270"
/>
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<corners android:radius="5dip" />
<gradient
android:startColor="#FFD700"
android:centerColor="#FFB90F"
android:centerY="0.75"
android:endColor="#FFA500"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>
thumb_image.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
android:color="@android:color/transparent">
<solid android:color="@android:color/black" />
<size
android:width="30dp"
android:height="30dp" />
</shape>
尝试
android:splitTrack="false"
在搜索栏中
参考这个帖子 Custom seekbar thumb not transparent on Lollipop API21
我已经使用 android:thumbOffset="-0dp"
并分配了自定义缩略图并且工作正常。实施了许多解决方案,但由于自定义拇指可绘制对象,它们无法完美运行,但这个解决方案简单明了,改动很少。
对我有用的是在父视图上设置 android:clipChildren="false"
。