我在android Marshmallow(6.0)的搜索栏中遇到问题
以下是搜索栏视图
<SeekBar
android:id="@+id/SeekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100"
android:maxHeight="11dp"
android:progressDrawable="@drawable/styled_progress_seekbar"
android:thumb="@drawable/popularity_box"
android:indeterminate="false" />
和自定义progressDrawable资源是
<item android:id="@android:id/background">
<bitmap
android:src="@drawable/blue_dot_new"
android:tileMode="mirror" />
</item>
<item android:id="@android:id/progress">
<bitmap
android:src="@drawable/grey_dot_new"
android:tileMode="repeat" />
</item>
我还没有把我的9补丁图片包含在这里。
以下是我在Lollipop之前得到的结果(工作正常)
但我在Marshmallow和输出中遇到问题
非常感谢,
Nandakishore P
答案 0 :(得分:1)
最后我通过增加android解决了这个问题:maxHeight =&#34; 50dp&#34;并改变了9个补丁图像。