如何在没有拇指的情况下治疗Seekbar高度

时间:2015-06-07 08:59:42

标签: android seekbar

我有一个像这样的默认Seekbar

<LinearLayout android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
            <android.support.v4.view.ViewPager
                android:id="@+id/readingPager"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1" />

            <SeekBar
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

            <LinearLayout android:orientation="horizontal"
                android:layout_width="match_parent"
                android:layout_height="40dp">
            <!--Other tools here!-->
            </LinearLayout>

        </LinearLayout>

enter image description here

但我需要这样的事情:

enter image description here

我希望我的Seekbar的边界高度仅为蓝色处理的高度,不包括拇指的高度。
并且拇指应该将其部分溢出到上方和下方视图中。我怎么能这样做?

0 个答案:

没有答案