如何防止Android中的默认滚动?

时间:2013-07-11 08:32:34

标签: android

需要帮助,       请参阅以下屏幕(这是我的实际主屏幕) enter image description here

但是,当我运行我的应用程序它看起来如下(屏幕当我运行我的应用程序 enter image description here

这里我需要拖动(滚动)屏幕才能看到页脚部分。我想避免这种情况,任何人都可以帮我解决这个问题。谢谢。!

2 个答案:

答案 0 :(得分:2)

希望这会对你有所帮助。使用以下

 <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:orientation="vertical">


    <!-- header part -->
     <LinearLayout
     android:id="@+id/ll_header"
     android:layout_alignParentTop="true"
            android:layout_height="wrap_content"
            android:layout_width="match_parent">
            ...
        </LinearLayout>

    <!-- scroll view part -->
        <ScrollView 
         android:id="@+id/sv_container"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
      android:layout_above="@+id/ll_fooetr">

        </ScrollView>

        <!-- footer part -->
        <LinearLayout
     android:id="@+id/ll_footer"
     android:layout_alignParentBottom="true"
            android:layout_height="wrap_content"
            android:layout_width="match_parent">
            ...
        </LinearLayout>
    </RelativeLayout>

答案 1 :(得分:0)

我的建议是对您的活动使用LinearLayoutRelativeLayout,并在其中使用ScrollView作为内部部分(应滚动)。

所以,也许是这样的

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="vertical">

    <ScrollView 
        android:layout_height="wrap_content"
        android:layout_width="match_parent">
        <!-- all your scrollable stuff goes here -->
    </ScrollView>

    <!-- here's your footer -->
    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent">
        ...
    </LinearLayout>
</LinearLayout>

Documentation on ScrollView

修改 我认为RelativeLayout(作为主要布局)将为您提供最好的服务,因为它允许您将自己与父母的边缘对齐。

Documentation on RelativeLayout