我正在尝试创建一个具有三角形背景的自定义 SeekBar。没有拇指图标。下面是一些我想要实现的图像
以下是我到目前为止的代码
Res/Drawable/segment_bg
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<clip>
<shape>
<gradient
android:startColor="#FF5e8ea3"
android:centerColor="#FF32a0d2"
android:centerY="0.1"
android:endColor="#FF13729e"
android:angle="270"
/>
</shape>
</clip>
</item>
</layer-list>
Res/Drawable/segment
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<nine-patch
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/slider"
android:dither="true"
/>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<gradient
android:startColor="#80028ac8"
android:centerColor="#80127fb1"
android:centerY="0.75"
android:endColor="#a004638f"
android:angle="270"
/>
</shape>
</clip>
</item>
<item
android:id="@android:id/progress"
android:drawable="@drawable/segment_bg"
/>
</layer-list>
活动.xml
<SeekBar
android:id="@+id/frequency_slider"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="100dp"
android:max="20"
android:progress="0"
android:secondaryProgress="0"
android:progressDrawable="@drawable/segment"
/>
使用的 9-patch 图像是
结果看起来像这样
我的问题是如何让搜索栏适应三角形?那么如何删除拇指图标,不需要一个。
谢谢