gpt4 book ai didi

android - 使用自定义图像编辑搜索栏的布局不起作用

转载 作者:行者123 更新时间:2023-11-29 00:29:35 25 4
gpt4 key购买 nike

我需要编辑搜索栏的布局。我的搜索栏布局文件:

<SeekBar
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:progress="0"
android:progressDrawable="@drawable/seek"
android:thumb="@drawable/thumb" />

drawable/seek 是:

<?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/time_passivo"/>
<item android:id="@android:id/progress" android:drawable="@drawable/time_attivo" />

</layer-list>

我想要这样的图片:

wrong seek

但是我得到的是:

correct seek

简单地说,我使用 2 个图像进行搜索...(在 png 上) time_attivo time_passivo

拇指是另一个png

编辑

我试着用 9path 来做,但它没有解决我的问题。

9path是: time_attivo_9patch time_passivo_9patch

但是搜索没有成功seek

最佳答案

我解决了这个问题。我没有用静态图,都是用代码画的

酒吧:

<SeekBar
android:id="@+id/seekBar1"
style="@style/PowerSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/TextViewStop"
android:layout_toRightOf="@+id/textViewStart"
android:minHeight="6dp"
android:maxHeight="6dp"
android:paddingLeft="5dip"
android:paddingRight="5dip"
android:progress="2"<br/>
android:thumb="@drawable/thumb" />

和风格:

<!-- Seekbar player -->
<style name="PowerSeekBar" parent="android:Widget.SeekBar">
<item name="android:progressDrawable">@drawable/seek</item>
<item name="android:thumbOffset">0dip</item>
</style>

<?xml version="1.0" encoding="UTF-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@android:id/background">
<shape>
<corners
android:radius="3dip" />
<gradient
android:startColor="#ffcccccc"
android:endColor="#9d9d9d"
android:centerY="0.50"
android:angle="270" />
</shape>
</item>

<item
android:id="@android:id/progress">
<clip>
<shape>
<corners
android:radius="3dip" />
<gradient
android:startColor="#ffd92034"
android:endColor="#ffad192a"
android:angle="270" />
</shape>
</clip>
</item>
</layer-list>

感谢大家。

关于android - 使用自定义图像编辑搜索栏的布局不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16693459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com