ScrollView在底部添加了大空间

时间:2013-09-06 13:13:29

标签: android android-scrollview

我的主要活动有许多按钮,它们在大型平板电脑屏幕上相互贴合,但不在较小的手机屏幕上。我添加了一个ScrollView,以便用户可以向下滚动到其他按钮,如果屏幕尺寸需要它:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="vertical"
          android:background="@drawable/bg"
          android:gravity="center_horizontal">

    <TextView
        android:id="@+id/trackSelectorText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"/>

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"                
            android:gravity="center_horizontal">

        <Button                    
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="foo" />
        <!-- More buttons -->
        </LinearLayout>
    </ScrollView>
</LinearLayout>

这种方法有效,但是我在最后一个按钮下方有一个很大的空白区域(即ScrollView可以向下滚动太远)。在实际的平板电脑和具有电话配置的模拟器上。如果我center内部LinearLayout(而不是center_horizontal),则空间在顶部和底部之间均匀分布,我也不想要。如何修复此布局?

我希望这张图片更加清晰,想象一下ScrollView已完全向下滚动并显示最后一个按钮。我的意思是空白区域是右图像上按钮6 下方的空格:

enter image description here

4 个答案:

答案 0 :(得分:11)

实际上,它与布局没有关系(除非我遗漏了什么)。我试着评论背景归属,它突然起作用了。成像的背景(@drawable/bg)太大而导致滚动。我将背景转换为9个补丁图像,因此它可以自动缩放,而且,额外的空间消失了。 尽管如此,如果没有9补丁可以实现这一点,我仍然有兴趣听听是否可以在XML文件中完成。

答案 1 :(得分:9)

尝试将此属性添加到ScrollView元素。 机器人:fillViewport =&#34;真&#34;

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:fillViewport="true" > ... </ScrollVIew>

参考:ScrollView Ref

答案 2 :(得分:1)

您可以在scrollview中使用此属性,以避免在视图底部添加额外的填充

android:overScrollMode="never"

答案 3 :(得分:0)

我已经检查了我的代码。完美地工作:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="vertical"
      android:background="@drawable/bg"
      android:gravity="center_horizontal">

<TextView
    android:id="@+id/trackSelectorText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"/>

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"                
        android:gravity="center_horizontal">

    <Button                    
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="foo" />
    <!-- More buttons -->
    </LinearLayout>
  </ScrollView>
</LinearLayout>

可能会帮助你....... !!