0

我正在尝试在我的 android 应用程序的布局之一中实现以下目标:

我想要一个包含主要内容(带有其他内容的线性布局)和一个页脚(带有其他内容的线性布局)的布局。主要内容应水平和垂直居中。页脚应该水平居中并且始终保持在底部。

除此之外,主要内容和页脚应该包含在滚动视图中,因为主要内容可能会增长并且所有内容仍然可以访问。

我怎样才能做到这一点?

4

1 回答 1

0

我认为以下内容接近您想要的,假设当您编写“页脚应该水平居中并始终保持在底部”时。你的意思是屏幕的底部。

  <?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"
>
<ScrollView 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:layout_above="@+id/footer" >
    <RelativeLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent"            
        >
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"    
            android:layout_centerInParent="true"            
            android:orientation="vertical" >
            <TextView
                android:layout_width="match_parent"
                android:layout_height="match_parent"    
                android:layout_weight="1"
                android:minLines="0"
                android:visibility="invisible"/>
            <TextView
                android:id="@+id/body"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="My main body text to display"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="match_parent"    
                android:layout_weight="1"
                android:minLines="0"
                android:visibility="invisible"/>
        </LinearLayout>
    </RelativeLayout>
</ScrollView>     
<LinearLayout
    android:id="@+id/footer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true" >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="My footer text to display"/>
</LinearLayout>     

假设这不太正确,它应该至少能给你一些想法。

于 2013-08-15T15:02:51.847 回答