Android导航组件在工具栏中的巨大空间

时间:2018-12-29 08:43:37

标签: android-navigation-drawer android-navigation

我已经使用新的android组件架构配置了带有导航抽屉的工具栏

布局如下:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        app:contentInsetStart="0dp"
        android:background="@color/actionBar_background">

        <fragment
            android:name="ToolbarLogoFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_centerVertical="true"
            android:layout_toEndOf="@+id/actionBar_Logo"/>

    </androidx.appcompat.widget.Toolbar>

    <androidx.drawerlayout.widget.DrawerLayout
        android:id="@+id/drawer_root"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/activity_background"
        tools:openDrawer="start">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <fragment
                android:id="@+id/nav_host_fragment"
                android:name="androidx.navigation.fragment.NavHostFragment"
                android:layout_width="0dp"
                android:layout_height="0dp"
                app:defaultNavHost="true"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:navGraph="@navigation/main_nav_graph"/>

        </androidx.constraintlayout.widget.ConstraintLayout>

        <com.google.android.material.navigation.NavigationView
            android:id="@+id/nav_view"
            android:layout_width="@dimen/main_menu_width"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:background="@color/actionBar_background"
            android:paddingStart="@dimen/menu_item_padding_start"
            android:paddingEnd="@dimen/menu_item_padding_start"
            app:itemBackground="@drawable/drawable_item"
            app:itemIconTint="@color/drawable_item"
            app:itemTextAppearance="@style/item_menu_style"
            app:itemTextColor="@color/drawable_item"
            app:menu="@menu/main_menu"/>

    </androidx.drawerlayout.widget.DrawerLayout>
</LinearLayout>

设置代码很简单:

private fun setupToolbar() {
    val appbarConfiguration = AppBarConfiguration(setOf(R.id.landing_dest), drawer_root)
    toolbar.setupWithNavController(navController, appbarConfiguration)
}

除了导航抽屉和我在工具栏上的自定义徽标之间有巨大的空隙并且我不是用户的来源之外,所有作品几乎都很棒。

使用布局检查器,我可以看到我的工具栏中只有2个组件

enter image description here

我的自定义徽标和抽屉按钮

这是它在视图上的外观。

enter image description here

我的布局上绝对没有空白或填充,没有动作栏切换按钮,徽标将显示在左侧空白处。

按钮和布局之间的间隙是哪里来的?

1 个答案:

答案 0 :(得分:0)

最终通过以下方式修复它:

            app:contentInsetLeft="0dp"
            app:contentInsetStart="0dp"
            app:contentInsetStartWithNavigation="0dp">