代码之家  ›  专栏  ›  技术社区  ›  sir-haver

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

  •  0
  • sir-haver  · 技术社区  · 5 年前

    我将按钮限制在屏幕底部,但不幸的是,屏幕底部边框和底部边框之间有一个小间隙:

    enter image description here

    我的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_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
    
        <com.google.android.material.tabs.TabLayout
            android:id="@+id/navigationTabs"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            app:layout_constraintTop_toTopOf="parent"
            app:tabMinWidth="100dp"
            app:tabRippleColor="@null"
            />
    
        <Button
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:text="BUTTON"
            android:layout_margin="0dp"
            app:layout_constraintBottom_toBottomOf="parent"/>
    
        <LinearLayout
            android:id="@+id/fragmentContainer"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:orientation="vertical"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/navigationTabs" />
    
    
    </androidx.constraintlayout.widget.ConstraintLayout>
    

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

    1 回复  |  直到 5 年前
        1
  •  5
  •   Md Golam Rahman Tushar    5 年前

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

    <Button
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#A4ABA4"
        android:text="BUTTON"
        android:layout_margin="0dp"
        app:layout_constraintBottom_toBottomOf="parent"/>
    
        2
  •  1
  •   Khoshghalb2c.IR    3 年前

    将此代码添加到 <androidx.constraintlayout.widget.ConstraintLayout ...> <button ...> :

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


    将此代码添加到 <com.google.android.material.tabs.TabLayout ...> <LinearLayout ...> <按钮> :

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


    将此代码添加到 <按钮> :

    android:background="#c0c0c0"