NavigationView 中的滚动动画
Scrolling animation in NavigationView
我的 activity 在 DrawerLayout
中有一个 NavigationView
。
当用户单击 NavigationView header 中的按钮时,我想使用动画滚动到 DrawerLayout/NavigationView
顶部。
NavigationView 和 DrawerLayout 似乎没有提供获取实际滚动位置的方法(getScrollY()
和 getScrollX()
总是 return 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>
您需要滚动 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);
}
}
您可以简单地使用 smoothScrollToPosition(0)
,因为 NavigationMenuView
是从 RecyclerView
扩展而来的
查看 source code for NavigationMenuView
例如
navigationView.smoothScrollToPosition(0);
我的 activity 在 DrawerLayout
中有一个 NavigationView
。
当用户单击 NavigationView header 中的按钮时,我想使用动画滚动到 DrawerLayout/NavigationView
顶部。
NavigationView 和 DrawerLayout 似乎没有提供获取实际滚动位置的方法(getScrollY()
和 getScrollX()
总是 return 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>
您需要滚动 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);
}
}
您可以简单地使用 smoothScrollToPosition(0)
,因为 NavigationMenuView
是从 RecyclerView
查看 source code for NavigationMenuView
例如
navigationView.smoothScrollToPosition(0);