1

需要帮助,请参阅以下屏幕,(这是我的实际主屏幕) 在此处输入图像描述

但是,当我运行我的应用程序时,它看起来如下(运行我的应用程序时的屏幕 在此处输入图像描述

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

4

2 回答 2

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>
于 2013-07-11T09:29:02.063 回答
0

我的建议是使用LinearLayoutorRelativeLayout用于您的活动,并在其中使用 aScrollView用于内部部分(应该滚动)。

所以,也许是这样的

<?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>

ScrollView 上的文档

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

相对布局文档

于 2013-07-11T08:40:10.590 回答