Android Layout topbar> scrollview>广告栏

时间:2012-02-14 09:34:27

标签: android xml layout

嗨,目前我真的很难为我的Android应用程序获得一个不错的布局。 我正在制作一个带有标题和页脚的视图,它围绕着一个滚动视图我已经尝试了很多情况但是我的底部栏从我的滚动视图中消失了。

为了让事情更加清晰,我已经对我想要的内容做了一个简单的图像:

Mockup

提前致谢!

1 个答案:

答案 0 :(得分:2)

试试这个

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

    <RelativeLayout
        android:id="@+id/toplayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

          <TextView 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"     
            android:text="TopBar"/>
    </RelativeLayout>

    <RelativeLayout
          android:id="@+id/bottomlayout"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_alignParentBottom="true">

          <TextView 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"     
            android:text="Bottom Bar"/>
    </RelativeLayout>   

    <ScrollView 
            android:id="@+id/scrolllayout"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/toplayout"
            android:layout_above="@id/bottomlayout">
         <RelativeLayout
             android:layout_width="fill_parent"
             android:layout_height="wrap_content"
             android:layout_gravity="center_horizontal">
        <ImageView 
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:background="@drawable/icon01"
              android:id="@+id/lin1"/>
       </RelativeLayout>
    </ScrollView>   


</RelativeLayout>