【发布时间】:2012-08-23 20:18:11
【问题描述】:
【问题讨论】:
【问题讨论】:
您可以假设整个栏和上面的拇指为一个搜索栏 您所要做的就是在进度条和背景图像上方包含空白区域,并将拇指下方的空白区域包含在拇指图像中。
【讨论】:
我也面临同样的问题..并找出以下解决方案,
解决方案 - 使用图层列表调整拇指..
创建 custom_thumb.xml(在您的可绘制文件夹中)
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:width="50dp"
android:height="50dp"
android:top="35dp"
android:bottom="35dp"
android:drawable="@drawable/thumb"/>
</layer-list>
根据需要调整宽度、高度、顶部、底部。
并使用以下代码设置拇指
android:thumb="@drawable/custom_thumb"
【讨论】: