在搜索栏中调整拇指大小

时间:2012-03-28 06:49:20

标签: android seekbar

我想知道,如何在搜索栏中调整拇指大小。我已经使用minheight和maxheight调整了搜索栏的大小。但拇指仍然保持相同的大小。我该怎么办?

1 个答案:

答案 0 :(得分:1)

您可以通过向SeekBar添加样式来更改拇指大小。 这是风格:

<style name="CustomSeekbar" parent="Widget.AppCompat.SeekBar">
    <item name="colorAccent">#1D5368</item>
    <item name="android:width">30dp</item>
    <item name="android:height">30dp</item>
</style>

以下是您可以在布局中使用它的Seekbar:

<SeekBar
    android:id="@+id/custom_seek_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/CustomSeekbar" />