android - ScrollView设置layoutParams后无法滚动
迷茫
迷茫 2017-04-18 09:13:07
0
1
475

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>
迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

모든 응답(1)
阿神

우선 속성 애니메이션 방법이 잘못되었음을 말씀드리게 되어 유감입니다. translationY이 속성 View이 존재합니다. 즉, 속성 이름을 설정하면 모든 뷰와 해당 하위 클래스가 이 속성을 갖게 됩니다. it 해당 Set方法을 자동으로 호출하게 됩니다. 예를 들어 지금 이렇게 작성하면 자동으로 View.setTranslationY(float translationY) 메서드를 호출하므로 다음 코드를 실행할 필요가 없습니다. 으아악

두 번째 문제는 LayoutParams.height가

에 해당한다는 것입니다. 으아악

코드가 실행된 후

<-2 설정은 분명히 잘못된 것입니다. 일반적으로 0보다 큽니다. LayoutParams.height이 코드 블록을 삭제한 후 온라인에서 클릭하여 100픽셀을 이동하려면 다음과 같이 쓸 수 있습니다:
으아악

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿