为什么我的搜索栏的左侧和右侧有空格?

时间:2016-03-17 10:27:12

标签: android xml android-layout android-studio seekbar

我正在Seekbar工作,我发现了一个问题。左侧和右侧存在默认空间。我需要搜索栏为全宽。我做了match_parentfill_parent,但那没有用。

enter image description here

<?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>

您可以按照此快照进行参考,左侧和右侧都有空格。

请仔细阅读我的帖子并提出一些解决方案。

3 个答案:

答案 0 :(得分:4)

<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"/>
</RelativeLayout>
/* In your activity */
SeekBar seekBar=(SeekBar)findViewById(R.id.seek_bar_controller);
seekBar.setPadding(0, 0, 0, 0);

答案 1 :(得分:1)

要删除您需要使用android:thumbOffset="20dp"

尝试以下代码:

<?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:thumbOffset="20dp" />
</RelativeLayout>

答案 2 :(得分:0)

尝试下面的XML,它对我有用:

<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="fill_parent"
          android:layout_height="wrap_content"
          android:thumbOffset="10dp"
          android:paddingLeft="5dp"
         android:paddingRight="5dp"/>

 </RelativeLayout>