Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
796 views
in Technique[技术] by (71.8m points)

android - Reduce space between menu groups inside navigation drawer

I want to reduce the space between each menu group in the Navigation drawer (In the following image, space between the two lines).

enter image description here

I've created a custom style and tried the following attributes

<item name="android:paddingTop">0dp</item>
<item name="android:paddingBottom">0dp</item>

They only reduced the padding around the items text.

Even the following attributes didn't worked

<item name="android:layout_marginTop">0dp</item>
<item name="android:layout_marginBottom">0dp</item>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think you must override design_navigation_separator_vertical_padding dimens in your project dimes.xml

 <dimen name="design_navigation_separator_vertical_padding" tools:override="true">0dp</dimen>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...