我突然遇到 Scrollview 超出屏幕底部的问题,因此即使您一直向下滚动它也不会显示其所有内容。XML 是:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFFFF">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:background="#FFBBBBBB"
android:orientation="vertical" >
<View
android:layout_width="100dp"
android:layout_height="300dp"
android:layout_margin="15dp"
android:layout_gravity="center_horizontal"
android:background="#FFDDDDFF"/>
<View
android:layout_width="100dp"
android:layout_height="300dp"
android:layout_margin="15dp"
android:layout_gravity="center_horizontal"
android:background="#FFDDDDFF"/>
</LinearLayout>
</ScrollView>
没有比这更简单的了。一旦您一直向下滚动(如滚动条的形状所示),您应该会看到底部的白色边距,但实际上是这样的:
与顶部比较:
底部应该看起来像顶部,只是颠倒了。这发生在模拟器、真实设备以及我尝试过的几乎所有 Android 版本中。我不知道我做错了什么(如果有的话......)。
请不要猜测,不要从臀部射击!只有经过测试的答案。我已经在这上面浪费了足够的时间。谢谢。