Android - Material Design - NavigationView - 如何放置垂直滚动?

时间:2015-08-29 17:04:13

标签: android scrollview material-design navigationview

我在compile 'com.android.support:design:22.2.1'使用NavigationView 好吧,除非它没有垂直滚动,否则一切都很好 如何通过xml设置它?

的xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <!-- The main content view -->
    <foo>
    </foo>

    <!-- The navigation drawer -->
    <android.support.design.widget.NavigationView
        android:id="@+id/navigation_view"
        style="@style/NavigationViewTheme"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/navigation_drawer_header"
        app:menu="@menu/navigation_drawer_menu" />
</android.support.v4.widget.DrawerLayout>

3 个答案:

答案 0 :(得分:1)

我找到了解决方案,这似乎是设计库的一个错误。更新库解决了我的问题

compile 'com.android.support:design:23.0.1'

答案 1 :(得分:0)

plugin.saveConfig();

中尝试android:nestedScrollingEnabled="true"

答案 2 :(得分:0)

在您的活动Java文件中使用此代码

navigationView.bringToFront();
navigationView.setVerticalScrollBarEnabled(true);