我有一个NestedScrollView,它具有一些元素ConstraintLayout
,并且本身具有其他视图,例如RecyclerView
。
问题是当我致电smoothScrollTo(x,y)
时,我的滚动视图滚动条不起作用并继续滚动到特定视图
这是代码:
public void linkToPostsRecyclerView() {
/* profile_scrollview.post(new Runnable() {
@Override
public void run() {
profile_scrollview.scrollTo(0, feeds_container.getBottom());
}
});*/
profile_scrollview.fling(0);
profile_scrollview.smoothScrollTo(0, feeds_container.getBottom());
}
出什么问题了?