我需要设计与Adding component at the bottom
中定义的几乎相似的结构我按照那个帖子给出的答案。但我的问题是,如果我使用tag导入另一个xml,其中包含LinearLayout
中的一些组件,如果我尝试在我的xml中添加xml RelativeLayout
,那么使用标签导入的组件将赢得'转到屏幕底部。但奇怪的是,如果我用同一个xml中的按钮替换那个导入的组件,那么按钮会移到底部。请帮帮我。
这是代码 -
<?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" >
<!-- Title Bar -->
<include
android:layout_alignParentTop="true"
android:id="@+id/title_bar"
layout="@layout/title_bar"
android:layout_marginBottom="1dip"/>
<!-- Options Bar -->
<include
android:layout_alignParentBottom="true"
android:id="@+id/options_bar"
layout="@layout/options_bar"
/>
<!--
<Button android:layout_alignParentBottom="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test"/>
-->
</RelativeLayout>
答案 0 :(得分:0)
每件事看起来都很好。请先检查option_bar.xml
。我在想这个问题是它的高度。可能是您设置了option_bar.xml
android:layout_height =“fill_parent”
如果是,那么请将其更改为“wrap_content”或“match_parent”。