在我的应用中,我有一个非常繁忙的布局,我必须添加一些SeekBars
。所以我需要减少height
的搜索栏。我搜索谷歌和stackoverflow中的其他问题,但除了使用android:padding = "0dp"
之外我找不到任何解决方案,但这还不够。我在我的布局中使用它:
<SeekBar
android:id="@+id/seekbar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="0dp"
android:minHeight="0dip"
android:maxHeight="2dip" />
您可以看到我使用了maxHeight
和minHeight
,但似乎受到布局管理器的影响。我如何检索较小的SeekBar?
答案 0 :(得分:2)
你可以使用这两个属性来制作你的欲望搜索栏
android:progressDrawable="@android:color/transparent"
android:thumb="@drawable/ic_launcher"
并为这两个属性使用小图像。