我正在使用Seekbar
,我发现了一个问题。默认空间位于左侧和右侧。我需要的搜索栏是全宽度。我做了match_parent
和fill_parent
,但没有工作。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<SeekBar
android:id="@+id/seek_bar_controller"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="0dp" />
</RelativeLayout>
你可以按照这个快照的参考,在左手和右手边的空间是存在的。
请仔细阅读我的帖子,并提出一些解决方案。
4条答案
按热度按时间mlnl4t2r1#
试试下面的XML,它为我工作:
hjzp0vay2#
从搜索栏的左侧和右侧删除多余的空间。使用下面的代码。
dxxyhpgq3#
esbemjvw4#
要删除它,您需要使用
android:thumbOffset="20dp"
,尝试下面的代码: