如何在导航视图中删除导航标题和项目之间的边框

时间:2019-05-16 16:14:41

标签: android android-layout navigationview

这是我的导航抽屉。

enter image description here

我想删除箭头处的空白。我不知道这是如何工作的。我希望有一种方法可以删除此边框。

这是我的代码: 在活动中:

<com.google.android.material.navigation.NavigationView
    android:id="@+id/nav_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:menu="@menu/drawer_view"
    app:headerLayout="@layout/nav_header"
    app:itemBackground="@drawable/nav_view_item_selector"
    />

标题:

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/header_height"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@drawable/nav_header_background">

<ImageView
    android:id="@+id/ivNavHeader"
    android:layout_width="60sp"
    android:layout_height="60sp"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    android:layout_marginTop="40sp"
    android:layout_marginLeft="20sp"
    android:layout_marginStart="20sp"
    android:contentDescription="@null"
    android:src="@drawable/ic_add_white_48dp"/>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintLeft_toLeftOf="@id/ivNavHeader"
    app:layout_constraintTop_toBottomOf="@+id/ivNavHeader"
    android:layout_marginTop="8sp"
    android:text="@string/app_name"
    android:textColor="@color/white"
    android:textSize="24sp"
    android:textStyle="bold"
    android:typeface="serif"/>

</androidx.constraintlayout.widget.ConstraintLayout>

0 个答案:

没有答案