4

我的活动有一个NavigationView内部DrawerLayout

当用户单击 NavigationView 标题中的按钮时,我想滚动到DrawerLayout/NavigationView带有动画的顶部。

似乎 NavigationView 和 DrawerLayout 没有提供获取实际滚动位置的方法(getScrollY()并且getScrollX()始终返回 0),所以我不能这样做。

如何使用动画滚动到顶部?

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     android:id="@+id/drawer_layout"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:fitsSystemWindows="true">

     <!-- My content -->

     <android.support.design.widget.NavigationView
         android:id="@+id/navigation"
         android:layout_width="wrap_content"
         android:layout_height="match_parent"
         android:layout_gravity="start"
         app:headerLayout="@layout/navigation_view_header"
         app:menu="@menu/my_navigation_items" />
 </android.support.v4.widget.DrawerLayout>
4

2 回答 2

5

您需要滚动 NavigationMenuView。

在下面的代码中,当单击菜单中的任何项目时,它将滚动到顶部

 NavigationView navigationView;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        navigationView = (NavigationView) findViewById(R.id.nav_view);
        navigationView.setNavigationItemSelectedListener(this);
}

@Override
public boolean onNavigationItemSelected(MenuItem item) {
        //here will scroll to top
((NavigationMenuView)navigationView.getChildAt(0)).smoothScrollToPosition(0);

        return true;
    }

编辑:如果你想防止未来可能发生的变化,你可以在这里使用反射,如下所示:

// try to scroll to the top of the navigation menu, if possible
if (navigationView.getChildCount() > 0) {
    View childView = navigationView.getChildAt(0);
    try {
        Method scroll = childView.getClass().getMethod("smoothScrollToPosition", int.class);
        scroll.invoke(childView, 0);
    } catch (NoSuchMethodException |
            SecurityException |
            IllegalAccessException |
            InvocationTargetException e) {
        Log.d(TAG, "smoothScrollToPosition", e);
    }
}
于 2016-02-17T11:10:42.740 回答
0

您可以简单的smoothScrollToPosition(0) 用户NavigationMenuViewRecyclerView

查看NavigationMenuView 的源代码

例如

 navigationView.smoothScrollToPosition(0);
于 2016-02-17T11:23:33.187 回答