如何将 paddingBottom 添加到 android 中的抽屉布局?

How do I add a paddingBottom to a drawer layout in android?

我正在处理一个使用抽屉式布局的 android 项目。抽屉布局包含许多项目,因此可以滚动。问题是,我需要最后一个项目有一个底部填充,这样滚动到最后一个项目后会有一些间距。

从上面的屏幕截图中,如何在最后一项 'Log out' 和屏幕末尾之间添加一些填充。

我已经尝试在抽屉布局中添加填充底部,但它仍然不起作用

 <androidx.drawerlayout.widget.DrawerLayout 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:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        tools:openDrawer="start"
        android:paddingBottom="@dimen/_120sdp"
        android:clipToPadding="false">

我也试过在滚动视图中包含导航视图,但它也不起作用

<ScrollView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:clipToPadding="false"
    android:paddingBottom="@dimen/_120sdp">

    <com.google.android.material.navigation.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_main"
        app:menu="@menu/activity_main_drawer" />

</ScrollView>

这是抽屉布局中的最后一个元素

<item
        android:paddingBottom="@dimen/_190sdp"
        android:title="@string/action">
        <menu>
            <item
                android:id="@+id/nav_rate_us"
                android:title="@string/rate_us" />
            <item
                android:id="@+id/nav_log_out"
                android:paddingBottom="@dimen/_120sdp"
                android:title="@string/log_out" />

        </menu>
    </item>

我怎样才能做到这一点?

在菜单资源文件末尾添加一项虚拟项。

 <item
    android:title=""
    android:enabled="false" >
</item>