gpt4 book ai didi

android - NestedScrollView 的 smoothScrollTo() 行为怪异

转载 作者:行者123 更新时间:2023-11-29 14:43:16 32 4
gpt4 key购买 nike

我想要实现的是在单击 tab1(等等)时滚动到 scroll_position_1,如 this .我根本不明白发生了什么。下面是我的布局结构。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<TextView
android:id="@+id/scroll_position_1"
android:layout_width="0dp"
android:layout_height="wrap_content" />

<TextView
android:id="@+id/scroll_position_2"
android:layout_width="0dp"
android:layout_height="wrap_content" />

</android.support.constraint.ConstraintLayout>
</android.support.v4.widget.NestedScrollView>

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|snap">

<ImageView
android:layout_width="match_parent"
android:layout_height="180dp"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"/>

<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>

<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>

<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
</android.support.design.widget.TabLayout>
</android.support.design.widget.CoordinatorLayout>

这是我在点击选项卡时滚动但不起作用的方式:

mNestedScroller.smoothScrollTo(0, scroll_position_1_text_view.getY());    

修改为:

mNestedScroller.scrollTo(0, scroll_position_1_text_view.getY());

工作没有问题!请帮忙。谢谢!

最佳答案

在 CoordinatorLayout 中以编程方式滚动 NestedScrollView 时似乎存在错误。这解决了我的问题:

private void scrollToView(final View view) {
mScroller.scrollBy(0, 1);
mScroller.smoothScrollTo(0, view.getTop());
}

或者为了更好的控制:

private void scrollToView(final View view) {
mScroller.scrollBy(0, 1);
ObjectAnimator.ofInt(mScroller, "scrollY", view.getTop()).setDuration(700).start();
}

关于android - NestedScrollView 的 smoothScrollTo() 行为怪异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52083678/

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