本文介绍了导航抽屉的圆角背景项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想为导航抽屉中的项目提供一个圆角:
I want to have a rounded corner for the items in navigation drawer like this :
这是material.io网站上的材料设计示例
it's an example of material design in material.io website
有可能吗?
推荐答案
只需使用 app:itemShapeAppearanceOverlay
属性:
Just use the app:itemShapeAppearanceOverlay
attribute:
<com.google.android.material.navigation.NavigationView
app:itemShapeAppearanceOverlay="@style/ShapeAppearanceOverlay.Nav"
...>
具有:
<style name="ShapeAppearanceOverlay.Nav" parent="">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">8dp</item>
</style>
这篇关于导航抽屉的圆角背景项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!