gpt4 book ai didi

android - 具有未调用的自定义行为的 CoordinatorLayout

转载 作者:太空狗 更新时间:2023-10-29 16:30:18 26 4
gpt4 key购买 nike

我正在尝试使用 RecyclerView 和 TextView 实现 CoordinatorLayout,其中 TextView 将根据您滚动 RecyclerView 的方式进行动画处理。但是我的自定义行为中的 onDependentViewChanged 只在我的 View 第一次膨胀时被调用几次,之后就不再调用了,尽管我滚动了 RecyclerView。

我的行为:

public class Behavior extends CoordinatorLayout.Behavior<TextView> {

public Behavior(Context context, AttributeSet attrs) {
super(context, attrs);
}

@Override
public boolean layoutDependsOn(CoordinatorLayout parent, TextView child, View dependency) {
return dependency instanceof RecyclerView;
}

@Override
public boolean onDependentViewChanged(CoordinatorLayout parent, TextView child, View dependency) {
return true;
}
}

我的 XML:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content">

</android.support.v7.widget.RecyclerView>

<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="blahhhhhhhhhhh"
app:layout_behavior="com.mypackage.Behavior"/>

</android.support.design.widget.CoordinatorLayout>

最佳答案

答案是您需要在您的自定义行为类中覆盖以下方法以返回 true:

@Override
public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, TextView child, View directTargetChild, View target, int nestedScrollAxes) {
return true;
}

这将发送滚动事件,您将适本地调用 layoutDependsOnonDependentViewChanged

关于android - 具有未调用的自定义行为的 CoordinatorLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41192454/

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