Android:自定义搜索栏拇指无法正确显示

时间:2016-05-04 14:56:59

标签: android seekbar

我有一个具有特定风格的自定义SeekBar:

      <SeekBar
            android:id="@+id/mediacontroller_progress"
            style="@style/MediaSeekBar"
            android:layout_width="0dip"
            android:layout_weight="1"
            android:layout_height="wrap_content" />

MediaSeekBar风格:

    <style name="MediaSeekBar" parent="android:Widget.SeekBar">
        <item name="android:progressDrawable">@drawable/media_seek_bar</item>
        <item name="android:minHeight">2dp</item>
        <item name="android:maxHeight">2dp</item>
        <item name="android:thumb">@drawable/media_seek_bar_thumb</item>
        <item name="android:progress">0</item>
    </style>

media_seek_bar drawable:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape>
            <corners android:radius="0dip" />
            <solid android:color="#20ffffff" />
        </shape>
    </item>
    <item android:id="@android:id/secondaryProgress">
        <clip>
            <shape>
                <corners android:radius="0dip" />
                <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="0dip" />
                <solid android:color="@color/theme_accent_1" />
            </shape>
        </clip>
    </item>
</layer-list>

media_seek_bar_thumb drawable:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
        android:drawable="@drawable/control_pressed" />
    <item android:state_focused="true"
        android:drawable="@drawable/control_pressed" />
    <item android:state_selected="true"
        android:drawable="@drawable/control_pressed" />
    <item android:drawable="@drawable/control_normal" />
</selector>

结果:

没有按

enter image description here

当我按下拇指enter image description here

所以问题是黄色圆圈周围的区域:它在我的png文件中是半透明的,但不在App中。

2 个答案:

答案 0 :(得分:0)

问题在于选择器内的图像。可能图像有额外的空间。我试图用自定义drawable内部选择器运行你的代码,它工作正常。在这里,我的圆圈可绘制:

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> <solid android:color="#ffe600"/> <size android:width="15dp" android:height="15dp"/> </shape>

enter image description here

答案 1 :(得分:0)

&LT;搜索栏     机器人:splitTrack = “假”     .... /&GT; 会好的。