ScrollView doesn't scroll to the bottom

前端 未结 7 948
独厮守ぢ
独厮守ぢ 2020-12-02 18:22

I have a certain problem in my Activity. The ScrollView doesn\'t scroll down to the bottom.
I have a screenshot for you.

相关标签:
7条回答
  • 2020-12-02 19:01

    For me I have another specific solution if the parent layout of the ScrollView is ConstraintLayout. If so, we don't need to set the padding or margin.

    <androidx.constraintlayout.widget.ConstraintLayout 
    ....>
        <ScrollView
                android:layout_width="match_parent"
                android:layout_height="0dp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintTop_toBottomOf="<if there is any element before this this scrollview >">
    
                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" >
    
    0 讨论(0)
提交回复
热议问题