Android framelayouts并排

时间:2014-08-28 09:37:58

标签: java android layout android-framelayout

我想将两个framelayout水平并排放置。我的layout.xml是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_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="com.agodevs.vrcamera.MainActivity" >
<FrameLayout android:id="@+id/camera_previewl" android:layout_width="fill_parent"  android:layout_height="wrap_content"></FrameLayout>
<FrameLayout android:id="@+id/camera_previewr" android:layout_width="fill_parent" android:layout_height="wrap_content"></FrameLayout>
</RelativeLayout>

我只能水平看到一个framelayout。我做错了什么?

2 个答案:

答案 0 :(得分:4)

使用此:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
tools:context="com.agodevs.vrcamera.MainActivity" >

<FrameLayout
    android:id="@+id/camera_previewl"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="#ff0000" >
</FrameLayout>

<FrameLayout
    android:id="@+id/camera_previewr"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="#000" >
</FrameLayout>

</LinearLayout>

答案 1 :(得分:0)

你有2 FrameLayouts,但你没有指定他们的位置。您可以在android:layout_toRightOf上使用camera_previewr属性,并指向camera_previewl作为锚点。但是,如果您只想横向放置2 RelativeLayout,则不需要Views,而使用LinearLayout作为根容器而不是android:orientation="horizontal"