我无法使 ScrollView 正确滚动。它总是切断底部的内容,就好像它是一个普通的LinearLayout一样。
我的代码
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true" >
<LinearLayout android:id="@+id/scroll_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:isScrollContainer="true"
android:orientation="vertical" >
当然,我已经尝试添加/删除“fillViewport”和“isScrollContainer”属性,它根本没有改变任何东西。
这适用于 ScrollView(仅限垂直)
HorizontalScrollView必须用于水平滚动。