如何在导航菜单中禁用行分隔符?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在导航菜单中禁用行分隔符?相关的知识,希望对你有一定的参考价值。
我想在导航菜单中禁用行分隔符。我尝试了一个代码,但它没有用。我希望有人可以帮助我:)这是我试过的代码:
<item name="android:listDivider">@android:color/transparent</item>
答案
好的你必须添加样式:
<item name="android:listDivider">@android:color/transparent</item>
但您必须在分隔符视图中将其定义为背景:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<View android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?android:attr/listDivider"/>
</FrameLayout>
以上是关于如何在导航菜单中禁用行分隔符?的主要内容,如果未能解决你的问题,请参考以下文章