Framelayout不会显示在主要活动中

时间:2014-11-20 13:04:51

标签: java android layout android-framelayout

这是我的activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <include android:id="@+id/toolbar"
        layout="@layout/toolbar"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:layout_below="@+id/toolbar">

        <FrameLayout
            android:id="@+id/fragment_content"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
        </FrameLayout>

    </LinearLayout>


</LinearLayout>

我的toolbar.xml:

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbar"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorPrimary" />

我发送给fragment_content的片段:

<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:orientation="vertical"
    android:background="#ffffff">

    <android.support.v4.widget.SwipeRefreshLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/swipe_container"
        android:layout_below="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

     <!-- Listview -->
    <ListView
        android:id="@+id/lvEvent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#FFFFFF"
        android:divider="#D0D0D0"
        android:dividerHeight="0.5dp"
        android:showDividers="middle"/>

    </android.support.v4.widget.SwipeRefreshLayout>

</RelativeLayout>

现在工具栏出现了,我可以用它做动作但是我的Framelayout中什么都没有?如果我删除了include(工具栏),那么我可以看到我的Framelayout中的内容。谁知道我做错了什么?

1 个答案:

答案 0 :(得分:1)

鉴于您已将工具栏的高度设置为wrap_content,我假设您需要垂直布局,但您的顶级LinearLayout设置为水平。将orientation更改为vertical