如何调整seekbar的高度
1个回答
展开全部
整seekbar的高度可以这么做:seekbar的属性:
[html] view plaincopy
android:progressDrawable="@drawable/seekbar_style"
seekbar_style.xml为:
<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/progress">
<clip>
<shape android:shape="rectangle">
<corners android:radius="2dip" />
<gradient android:startColor="#80000000" android:width="10dp"
android:centerColor="#7e209e" android:centerY="0.5" android:angle="90"
android:endColor="#80000000" />
<stroke android:width="10dp" android:color="#80000000"
android:dashWidth="1dp" android:dashGap="1dp" />
</shape>
</clip>
</item>
</layer-list>
如果你说的是thrumb(也就是点击拖动的那块灰色的地方),可以修改属性android:thumb="@drawable/thumb",自定应thumb.xml
[html] view plaincopy
android:progressDrawable="@drawable/seekbar_style"
seekbar_style.xml为:
<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/progress">
<clip>
<shape android:shape="rectangle">
<corners android:radius="2dip" />
<gradient android:startColor="#80000000" android:width="10dp"
android:centerColor="#7e209e" android:centerY="0.5" android:angle="90"
android:endColor="#80000000" />
<stroke android:width="10dp" android:color="#80000000"
android:dashWidth="1dp" android:dashGap="1dp" />
</shape>
</clip>
</item>
</layer-list>
如果你说的是thrumb(也就是点击拖动的那块灰色的地方),可以修改属性android:thumb="@drawable/thumb",自定应thumb.xml
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询