我怎样才能使搜索棒的拇指完全不透明

时间:2019-06-08 12:13:11

标签: android opacity seekbar

我在默认的离散搜索栏点缀背景上有一个自定义的搜索栏拇指。我的seekbar拇指是一个非透明的jpg,但通过拇指可以以某种方式看到不明显的seekbar点。

    SeekBar
                android:id="@+id/Level"
                style="@style/Widget.AppCompat.SeekBar.Discrete"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp"
                android:layout_marginBottom="20dp"
                android:layout_weight="1"
                android:clickable="false"
                android:focusable="false"
                android:max="10"
                android:progress="3"

                android:thumb="@drawable/thumb_opaque"

                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toStartOf="@+id/linearLayout2"
                app:layout_constraintStart_toEndOf="@+id/setLevel"
                app:layout_constraintTop_toTopOf="parent" /

>

我想将拇指的透明度设置为完全不透明。

最新编辑/答案:

我使用了以下样式,效果很好。

<style name="SteplessSeekBar"
        parent="Base.Widget.AppCompat.SeekBar.Discrete">
        <item name="tickMark">@null</item>

        </item>
</style>

0 个答案:

没有答案