我试图在片段上方显示RelativeLayout但没有成功。
这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#5C5A59"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="5dp" >
</RelativeLayout>
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center|bottom"
android:background="#5C5A59"
android:orientation="horizontal"
android:paddingLeft="10dp"
android:paddingRight="10dp" >
<TextView
android:id="@+id/lbl_altitude"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/lbl_altitude"
android:textColor="#00FFFF"
android:layout_alignParentBottom="true" />
</RelativeLayout>
</LinearLayout>
使用此代码,Fragment始终占据屏幕的整个大小,而上面的RelativeLayout不显示。
提前谢谢。
答案 0 :(得分:0)
尝试使用layout_weight
属性
您可以阅读本指南:Linear Layout
答案 1 :(得分:0)
如果您使用线性布局,则必须设置权重,这将根据百分比设置屏幕,例如,如果您将权重1赋予父级,然后您首先将布局权重0.2赋予布局ang 0.8对你的影响,这意味着你的布局获得20%的屏幕,其他的战略获得80%
所以我认为您希望将Relative布局用作父级,并在父级顶部设置第一个子对齐,并将下面的fragement设置为相对布局。