在我的Android应用程序中,我有这样的布局:

<?xml version="1.0" encoding="utf-8" ?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical">

    <fragment
         android:id="@+id/map"
         android:layout_width="match_parent"
         android:layout_height="0dp" 
         android:layout_weight="1" 
         class="com.google.android.gms.maps.SupportMapFragment"/>

    <Button
        android:id="@+id/button_back"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:onClick="CloseActivity"
        android:padding="0dp"
        android:text="@+string/back" />

</LinearLayout>

在预览和在手机上,它看起来是这样的:

正如你在底部区域的按钮上看到的,那里有一些填充。

我怎么能摆脱它,让按钮完全填满底部区域?


当前回答

以编程方式删除AppCompatButton填充:

button.setPadding(0, 0, 0, 0)
button.minHeight = 0
button.minimumHeight = 0

其他回答

它似乎不是填充,边距,或minheight/width。 设置android:background="@null"按钮失去了触摸动画,但事实证明,设置任何背景都可以修复边界。


我目前正在与:

minSdkVersion 19
targetSdkVersion 23

你也可以用layout_width(height)参数来做。

例如,我已经用android:layout_height="18dp"代码删除了顶部和底部空间。

对< androidx.appcompat.widget.AppCompatButton >

           <androidx.appcompat.widget.AppCompatButton
                .
                .
                android:minHeight="0dp"
                android:minWidth="0dp" 
               >

            </androidx.appcompat.widget.AppCompatButton>

经过几个小时的深入研究,我终于找到了一个解决方案,不使用不同的元素,操纵minHeight或minWidth,甚至包裹按钮周围的RelativeLayout。

<Button
    android:foreground="?attr/selectableItemBackground"
    android:background="@color/whatever" />

这里的主要收获是前景的设置,而不是许多答案所规定的背景。将背景本身更改为selectableItemBackground将覆盖您对按钮的颜色/背景所做的任何更改(如果有的话)。

改变前景可以让你两全其美:去掉“看不见的”填充,保留按钮的设计。

我的解决方案是将insetTop和insetBottom属性设置为0。

<android.support.design.button.MaterialButton
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:insetTop="0dp"
        android:insetBottom="0dp"
        android:text="@string/view_video"
        android:textColor="@color/white"/>