gpt4 book ai didi

android - NavigationView 中的滚动动画

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:35:42 25 4
gpt4 key购买 nike

我的 Activity 在 DrawerLayout 中有一个 NavigationView

当用户单击 NavigationView header 中的按钮时,我想使用动画滚动到 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>

最佳答案

您需要滚动 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);
}
}

关于android - NavigationView 中的滚动动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35338444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com