按钮在约束布局中没有完全粘在屏幕底部

Posted

技术标签:

【中文标题】按钮在约束布局中没有完全粘在屏幕底部【英文标题】:Button doesn't fully stick to bottom of screen in constraint layout 【发布时间】:2020-05-24 18:58:06 【问题描述】:

我将一个按钮约束在屏幕底部,可惜屏幕底部边框和按钮底部边框之间有一个小间隙:

我的 XML:

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".MainActivity">

    <com.google.android.material.tabs.TabLayout
        android:id="@+id/navigationTabs"
        android:layout_
        android:layout_
        app:layout_constraintTop_toTopOf="parent"
        app:tabMinWidth="100dp"
        app:tabRippleColor="@null"
        />

    <Button
        android:layout_
        android:layout_
        android:text="BUTTON"
        android:layout_margin="0dp"
        app:layout_constraintBottom_toBottomOf="parent"/>

    <LinearLayout
        android:id="@+id/fragmentContainer"
        android:layout_
        android:layout_
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/navigationTabs" />


</androidx.constraintlayout.widget.ConstraintLayout>

造成这种差距的原因是什么?我怎样才能摆脱它?

【问题讨论】:

android studio 有一个名为“layout inspect”的功能。您可以在工具选项下找到它。您可以使用此功能检查布局以检查导致间隙的原因!希望有帮助! 【参考方案1】:

它是默认背景的按钮周围的阴影。指定你自己的背景,差距就会消失。 例如:

<Button
    android:layout_
    android:layout_
    android:background="#A4ABA4"
    android:text="BUTTON"
    android:layout_margin="0dp"
    app:layout_constraintBottom_toBottomOf="parent"/>

【讨论】:

【参考方案2】:

将此代码添加到 &lt;androidx.constraintlayout.widget.ConstraintLayout ...&gt;&lt;button ...&gt;

android:layout_margin="0dp"
android:padding="0dp"

将此代码添加到 &lt;com.google.android.material.tabs.TabLayout ...&gt;&lt;LinearLayout ...&gt;&lt;button ...&gt;

app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"

将此代码添加到 &lt;button ...&gt;

android:background="#c0c0c0"

【讨论】:

以上是关于按钮在约束布局中没有完全粘在屏幕底部的主要内容,如果未能解决你的问题,请参考以下文章

滚动视图中的约束布局

自动布局:隐藏工具栏后重置底部约束

如何使用自动布局将按钮放在屏幕底部

自动布局约束未正确放置容器视图

iOS底部对齐具有编程自动布局约束的对象

有没有办法在没有代码的情况下使用自动布局来缩小约束?