Android seekbar拇指阴影

时间:2018-09-30 19:29:33

标签: android seekbar

我正在尝试创建自定义的搜索栏,如下所示: Example of the thumb with shadow

我无法为拇指创建此类阴影。我试图在xml中将阴影作为自定义拇指的一部分绘制,但是它使拇指向上移动。

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/thumb_shadow"
        android:left="4dp"
        android:height="@dimen/seek_bar_thumb_shadow_size"
        android:width="@dimen/seek_bar_thumb_shadow_size"
        android:top="@dimen/seek_bar_thumb_shadow_distance"
        >
    </item>
    <item android:drawable="@drawable/thumb_red" android:bottom="@dimen/seek_bar_thumb_shadow_distance"
        android:right="4dp"
        android:height="@dimen/seek_bar_thumb_size"
        android:width="@dimen/seek_bar_thumb_size"
        >
    </item>
</layer-list>

当前拇指的示例: Current thumb

您能帮我吗?如何正确创建此类阴影?

p.s。请不要看错颜色。 谢谢。

0 个答案:

没有答案