如何在我的标题栏下面放置tablayout

时间:2017-07-11 03:07:20

标签: android xml

如何在工具栏下方放置Tablayout?它给我一个错误消息,当我运行它时,工具栏不显示。但是当我给Tablayout alignbottom工具栏然后显示

这是我的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:id="@+id/rel"
    tools:context="com.example.test.MainActivity">



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


    <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/nvd_act_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/app_bar"
        >

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

            <TextView
                android:id="@+id/lbl_act_main"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:text="Hello World!" />
        </FrameLayout>


        <android.support.v7.widget.RecyclerView xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/lst_nav_drawer"
            android:layout_width="240dp"
            android:layout_height="match_parent"
            android:layout_gravity="start|left"
            android:background="@android:color/white"
            app:layoutManager="android.support.v7.widget.LinearLayoutManager" />
    </android.support.v4.widget.DrawerLayout>


    <RelativeLayout
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_alignParentBottom="true"
        android:background="#2480c1"
        android:gravity="center"
        android:layout_gravity="center">

        <android.support.design.widget.TabLayout
            android:id="@+id/tbl_basic"
            android:layout_height="wrap_content"
            android:layout_width="match_parent">
        </android.support.design.widget.TabLayout>

        <TextView
            android:id="@+id/lbl_basic_content"
            android:layout_below="@id/tbl_basic"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="top"
            android:textColor="@android:color/black" />
        </RelativeLayout>

</RelativeLayout>

这是我创建的屏幕,tablayout位于底部。我希望它就在工具栏下方。我该怎么做?感谢

Here

以下是错误消息

@ id / rel不是同一RelativeLayout中的兄弟 给定RelativeLayout中的布局约束应该引用相同相对布局中的其他视图(但不是本身!)

2 个答案:

答案 0 :(得分:0)

试试这个  更改   android:layout_alignParentBottom =“ true ”到android:layout_alignParentBottom =“ false

<RelativeLayout
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_alignParentBottom="false"
        android:layout_below="@+id/app_bar "
        android:background="#2480c1"
        android:gravity="center"
        android:layout_gravity="center">

        <android.support.design.widget.TabLayout
            android:id="@+id/tbl_basic"
            android:layout_height="wrap_content"
            android:layout_width="match_parent">
        </android.support.design.widget.TabLayout>

        <TextView
            android:id="@+id/lbl_basic_content"
            android:layout_below="@id/tbl_basic"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="top"
            android:textColor="@android:color/black" />
        </RelativeLayout>

答案 1 :(得分:0)

如果您想在工具栏下方,请将其放在工具栏下方:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rel"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

    <RelativeLayout
        android:layout_below="@id/app_bar"
        android:id="@+id/footer"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:layout_gravity="center"
        android:background="#2480c1"
        android:gravity="center">

        <android.support.design.widget.TabLayout
            android:id="@+id/tbl_basic"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </android.support.design.widget.TabLayout>

        <TextView
            android:id="@+id/lbl_basic_content"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@id/tbl_basic"
            android:gravity="top"
            android:textColor="@android:color/black" />
    </RelativeLayout>

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

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

            <TextView
                android:id="@+id/lbl_act_main"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:text="Hello World!" />
        </FrameLayout>

        <android.support.v7.widget.RecyclerView xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/lst_nav_drawer"
            android:layout_width="240dp"
            android:layout_height="match_parent"
            android:layout_gravity="start|left"
            android:background="@android:color/white"
            app:layoutManager="android.support.v7.widget.LinearLayoutManager" />
    </android.support.v4.widget.DrawerLayout>

</RelativeLayout>