Android 页眉和页脚与屏幕重叠
在我的应用程序中,我想要两个静态部分作为页眉和页脚。我在布局 xml 中添加了它,并使用相对布局,它对我来说效果很好。但是当我尝试使用 include 单独添加标头 xml 时。标题和中间屏幕视图重叠。请建议我如何消除这个问题。
这是标题 xml,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:stretchColumns="*">
<TableRow android:layout_width="wrap_content" android:layout_height="10px" android:gravity="center|center_vertical|center_horizontal">
<ImageView android:id="@+id/icon" android:src="@drawable/iconhome" android:layout_width="wrap_content" android:layout_gravity="left" android:layout_height="wrap_content"/>
<TextView android:text="Application" android:id="@+id/txtTitlevalue" android:textColor="#800517" android:textSize="18px" android:layout_height="wrap_content" android:gravity="center|left" android:textStyle="bold" android:layout_width="wrap_content" android:layout_weight="1"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:background="#800517" android:gravity = "center|center_vertical">
<TextView android:text=" \n " android:layout_height="3px"/>
</TableRow>
</TableLayout>
</RelativeLayout>
以及我包含 header.xml 的其他 xml,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#FFFFFF"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include android:layout_height="wrap_content" layout="@layout/header" />
<ScrollView android:layout_width="fill_parent" android:layout_height="wrap_content">
<TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="15px" android:stretchColumns="*">
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:padding="5px" android:gravity="center_vertical|left">
<TextView android:text=" SEARCH FOR PROPERTY " android:layout_height="wrap_content" android:textSize="14px" android:textColor="#000000"/>
<ImageView android:id="@+id/redarrow" android:src="@drawable/redarrow" android:layout_width="wrap_content" android:layout_gravity="left" android:layout_height="wrap_content"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:gravity = "center_vertical">
<TextView android:id="@+id/acct_number1" android:layout_width="fill_parent" android:layout_height="25px" android:text=" I want to: " android:background="#EBDDE2" android:textColor="#000000" android:textSize="13px" android:gravity="center_vertical" android:layout_weight="1"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:paddingLeft="15px" android:paddingTop="3px" android:paddingBottom="3px" android:paddingRight="15px" android:layout_height="15px" android:gravity = "center_vertical">
<RadioButton android:text="Buy" android:id="@+id/radioButton1" android:textColor="#000000" android:textSize="13px" android:layout_width="0dip" android:layout_height="40px"/>
<RadioButton android:text="Rent" android:id="@+id/radioButton2" android:textColor="#000000" android:textSize="13px" android:layout_width="wrap_content" android:layout_height="40px" android:layout_weight="1"/>
</TableRow>
</TableLayout>
</ScrollView>
</RelativeLayout>
谢谢,
In my app i want to have two static parts as header and footer. i added this in layout xml and using relative layout it worked fine for me. But when i tried to add a header xml separately using include. The header and mid screen view overlapping. pls suggest how can i eliminate this.
here is the header xml,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:stretchColumns="*">
<TableRow android:layout_width="wrap_content" android:layout_height="10px" android:gravity="center|center_vertical|center_horizontal">
<ImageView android:id="@+id/icon" android:src="@drawable/iconhome" android:layout_width="wrap_content" android:layout_gravity="left" android:layout_height="wrap_content"/>
<TextView android:text="Application" android:id="@+id/txtTitlevalue" android:textColor="#800517" android:textSize="18px" android:layout_height="wrap_content" android:gravity="center|left" android:textStyle="bold" android:layout_width="wrap_content" android:layout_weight="1"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:background="#800517" android:gravity = "center|center_vertical">
<TextView android:text=" \n " android:layout_height="3px"/>
</TableRow>
</TableLayout>
</RelativeLayout>
and other xml where i am including header.xml is,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#FFFFFF"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include android:layout_height="wrap_content" layout="@layout/header" />
<ScrollView android:layout_width="fill_parent" android:layout_height="wrap_content">
<TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="15px" android:stretchColumns="*">
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:padding="5px" android:gravity="center_vertical|left">
<TextView android:text=" SEARCH FOR PROPERTY " android:layout_height="wrap_content" android:textSize="14px" android:textColor="#000000"/>
<ImageView android:id="@+id/redarrow" android:src="@drawable/redarrow" android:layout_width="wrap_content" android:layout_gravity="left" android:layout_height="wrap_content"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:gravity = "center_vertical">
<TextView android:id="@+id/acct_number1" android:layout_width="fill_parent" android:layout_height="25px" android:text=" I want to: " android:background="#EBDDE2" android:textColor="#000000" android:textSize="13px" android:gravity="center_vertical" android:layout_weight="1"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:paddingLeft="15px" android:paddingTop="3px" android:paddingBottom="3px" android:paddingRight="15px" android:layout_height="15px" android:gravity = "center_vertical">
<RadioButton android:text="Buy" android:id="@+id/radioButton1" android:textColor="#000000" android:textSize="13px" android:layout_width="0dip" android:layout_height="40px"/>
<RadioButton android:text="Rent" android:id="@+id/radioButton2" android:textColor="#000000" android:textSize="13px" android:layout_width="wrap_content" android:layout_height="40px" android:layout_weight="1"/>
</TableRow>
</TableLayout>
</ScrollView>
</RelativeLayout>
thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
header.xml --->
Main.xml(中)--->
页脚.xml --->
header.xml --->
Main.xml (middle) --->
footer.xml --->
在第二个xml中使用LinearLayout而不是RelativeLayout..
use LinearLayout instead of RelativeLayout in second xml..
试试这个...
try this...