我正在使用支持android.support.design.widget.NavigationView
我想在群组之间添加一个分隔符(或者首先是“设置”,这不是问题),但是我无法在网络中找到方法。感谢您的支持
base_layout.xml
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
>
<include
android:id="@+id/toolbar"
layout="@layout/toolbar"
/>
<FrameLayout
android:id="@+id/frame"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</LinearLayout>
<!--
IF YOU NEED HEADER:
app:headerLayout="@layout/drawer_header"
-->
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
app:menu="@menu/drawer"
/>
</android.support.v4.widget.DrawerLayout>
drawer.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single">
<item
android:id="@+id/home"
android:checked="false"
android:icon="@drawable/ic_home_black_24dp"
android:title="@string/list_home" />
<item
android:id="@+id/list_event"
android:checked="false"
android:icon="@drawable/ic_list_black_24dp"
android:title="@string/list_event" />
</group>
<group android:checkableBehavior="single">
<item
android:id="@+id/settings"
android:checked="false"
android:icon="@drawable/ic_settings_black_24dp"
android:title="@string/settings" />
</group>
</menu>
我确实尝试将View添加到drawer.xml但没有成功(根本没有任何东西显示为分隔符):
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single">
<item
android:id="@+id/home"
android:checked="false"
android:icon="@drawable/ic_home_black_24dp"
android:title="@string/list_home" />
<item
android:id="@+id/list_event"
android:checked="false"
android:icon="@drawable/ic_list_black_24dp"
android:title="@string/list_event" />
</group>
<View
android:layout_width="fill_parent"
android:layout_height="10dp"
android:background="#000000"/>
<group android:checkableBehavior="single">
<View
android:layout_width="fill_parent"
android:layout_height="10dp"
android:background="#000000"/>
<item
android:id="@+id/settings"
android:checked="false"
android:icon="@drawable/ic_settings_black_24dp"
android:title="@string/settings" />
</group>
</menu>
答案 0 :(得分:2)
您需要向群组添加不同的ID,例如:
<group android:id="@+id/group1">
<group android:id="@+id/group2">
等
编辑:
关于身高,我不确定它是否有效,但您可以尝试将其添加到styles.xml
并使用NavigationView
或style="@style/MyNavigationView"
将此样式应用于android:theme="@style/MyNavigationView"
:
<style name="MyNavigationView" parent="Widget.Design.NavigationView">
<item name="android:dividerHeight">10dp</item>
</style>
答案 1 :(得分:-1)
您可以通过此
添加水平分隔符import random
def multiCaller(x):
if x == 0:
return []
else:
return [random.randint(0, 100)] + multiCaller(x-1)
def get_list(x):
res = multiCaller(x)
res.sort()
return res
print get_list(5)
如果要添加垂直分隔符,请使用android:layout_width =“1dp”