首先,这是我的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="fill_parent"
android:orientation="horizontal"
android:background="@android:color/white">
<LinearLayout [...]
android:layout_above"@+id/test">
</LinearLayout>
<LinearLayout [...]>
<LinearLayout [...]
android:id="@+id/test"/>
</LinearLayout>
</RelativeLayout>
这个xml不起作用......
有没有选择呢?将android:layout_above
参数设置为另一个参数?
答案 0 :(得分:1)
我修改了一些代码..请试试这个
<?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="fill_parent"
android:orientation="horizontal"
android:background="@android:color/white">
<LinearLayout [...]
android:id="@+id/test">
</LinearLayout>
<LinearLayout [...]
android:layout_below"@+id/test">
<LinearLayout [...]/>
</LinearLayout>
</RelativeLayout>