ScrollView中包含一个高度远超屏幕的LinearLayout,可以正常滚动。当使用ObjectAnimator把ScrollView向上平移100个px,在updateLisnter中重设ScrollView的高度后,Scrollview没有完全显示,也无法滚动,这是什么原因呢?
代码:
ll_wrap.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(scrollview, "translationY", -100f);
objectAnimator.setDuration(500);
objectAnimator.start();
objectAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator valueAnimator) {
//重设ScrollView高度
ViewGroup.LayoutParams params = scrollview.getLayoutParams();
params.height = (int) (scrollview.getHeight() - (float) valueAnimator.getAnimatedValue());
scrollview.setLayoutParams(params);
}
});
}
});
布局代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/ll_wrap"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<FrameLayout
android:background="@color/colorAccent"
android:layout_width="match_parent"
android:layout_height="400dp">
</FrameLayout>
<FrameLayout
android:background="@android:color/darker_gray"
android:layout_width="match_parent"
android:layout_height="400dp">
</FrameLayout>
</LinearLayout>
</ScrollView>
우선 속성 애니메이션 방법이 잘못되었음을 말씀드리게 되어 유감입니다.
두 번째 문제는 LayoutParams.height가translationY
이 속성View
이 존재합니다. 즉, 속성 이름을 설정하면 모든 뷰와 해당 하위 클래스가 이 속성을 갖게 됩니다. it 해당Set方法
을 자동으로 호출하게 됩니다. 예를 들어 지금 이렇게 작성하면 자동으로View.setTranslationY(float translationY)
메서드를 호출하므로 다음 코드를 실행할 필요가 없습니다. 으아악에 해당한다는 것입니다. 으아악
코드가 실행된 후<-2 설정은 분명히 잘못된 것입니다. 일반적으로 0보다 큽니다.
LayoutParams.height
이 코드 블록을 삭제한 후 온라인에서 클릭하여 100픽셀을 이동하려면 다음과 같이 쓸 수 있습니다:으아악