具有梯度间隔的Custome Seekbar

时间:2017-08-02 19:35:31

标签: android xml mask android-seekbar

我正在创建一个范围滑块,它的格式必须为enter image description here

到目前为止,我已经能够创建以下表单:enter image description here

从两张图片中可以看出,我正在寻找一种方法将渐变添加到滑块。

我的代码到目前为止:

progress_drawable.xml

var obj;

activity_main.xml中

Object.prototype.toString.call(obj).split(' ')[1].replace(']', '');

CustomSeekbar的ondraw方法

 <?xml version="1.0" encoding="utf-8"?>
  <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
     <item android:id="@android:id/background"
          android:drawable="@drawable/background_fill" />

    <item android:id="@android:id/progress">
        <clip android:drawable="@drawable/progress_fill" />
    </item>
  </layer-list>

我假设可能使用蒙版实现渐变,但我不知道该怎么做。任何人都可以提供帮助或示例。

由于

0 个答案:

没有答案