6

我的主要 Activity 有许多按钮,它们在大平板电脑屏幕上彼此下方,但在较小的手机屏幕上却不适合。我添加了一个 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下方的空白区域:

在此处输入图像描述

4

4 回答 4

10

尝试将此属性添加到您的 ScrollView 元素。机器人:fillViewport="真"

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

参考:滚动视图参考

于 2013-09-06T13:36:19.107 回答
10

实际上,它与布局并没有真正的关系(除非我遗漏了一些东西)。我尝试注释掉归因的背景,它突然起作用了。背景图像 ( @drawable/bg) 太大并导致滚动。我将背景转换为 9-patch 图像,因此它可以自动缩放,瞧,额外的空间消失了。尽管如此,如果没有 9-patch 就可以实现这一点,我仍然很想知道这是否可以在 XML 文件中完成。

于 2013-09-06T15:19:00.297 回答
1

您可以在滚动视图中使用此属性以避免视图底部的额外填充

android:overScrollMode="never"
于 2016-10-15T05:55:45.543 回答
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>

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

于 2013-09-06T13:30:43.733 回答