Android | Java |如何从相对布局中删除默认边距?

Android | Java | How to remove default margins from relative layout?

我有一个包含布局的底页。并且该布局具有相对布局。其中有默认边距。即使我将边距设置为 0dp,它也不起作用。

bottom_sheet_back.xml

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="@drawable/blue_back"/>

</RelativeLayout>

里面的代码 activity_main.xml


    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:layout_alignParentBottom="true"
        android:elevation="10dp"
        android:padding="0dp">

        <com.google.android.material.bottomappbar.BottomAppBar
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom">

            <include layout="@layout/bottom_sheet_back"/>

        </com.google.android.material.bottomappbar.BottomAppBar>

这给我这样的结果。

其中 bottom_sheet_back.xml 具有完整宽度。

正如您在第一张图片中看到的那样,我想删除该边距。

已尝试解决方案

  1. Android UI Default Margin Remove

以上解决方案对我的情况帮助不大。我尝试了另一种解决方案,它是编辑 dimens.xml 但是,我似乎无法在任何地方找到它。我使用默认具有 constraintLayout 的 android studio 4.1.3。因此,dimens.xml 不是由项目生成的。但是,如果它不是由项目生成的,那么 RelativeLayout 是如何获得利润的?

任何帮助将不胜感激。

我已经设法解决了你的问题,我认为 BottomAppbar 有问题,但是如果你更改为 BottomNavigationView 它工作得很好没有问题,它删除了默认边距

这是我使用的底部导航的代码

<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom">

    <include layout="@layout/bottom_sheet_back"/>

</com.google.android.material.bottomnavigation.BottomNavigationView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

谢谢