我想在相同的布局中有一个RelativeLayout和LinearLayout

时间:2015-02-22 07:12:00

标签: android android-layout

http://i.stack.imgur.com/Utrxn.png

我拍了一张照片,展示了我想要的布局。基本上它是LinearLayout之上的RelativeLayout。我为layout设置了layout_weight = 3,为linear设置了layout_weight = 1。到目前为止这还没有奏效。谁能告诉我我的XML有什么问题?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="kim.albert.marveleventtracker.EventDescriptionActivity">

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="3"></RelativeLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:orientation="horizontal">
</RelativeLayout>

1 个答案:

答案 0 :(得分:2)

您应该更改顶部布局 LinearLayout ,设置方向是垂直的