工具栏未显示在Fragment中

时间:2018-06-10 15:19:51

标签: android

我创建了一个Toolbar并将其添加到我的main_activity.xml中,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar_detail"
        android:layout_width="match_parent"
        android:layout_height="?android:attr/actionBarSize"
        android:background="@color/loginBrown"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        app:contentInsetStart="0dp"
        app:contentInsetStartWithNavigation="0dp">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:orientation="horizontal">


            <TextView
                android:id="@+id/toolbar_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center_horizontal"
                android:textColor="#fff"
                android:textSize="16sp" />
        </LinearLayout>
    </android.support.v7.widget.Toolbar>

    <FrameLayout
        android:id="@+id/frame_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/navigation"
        android:animateLayoutChanges="true">
    </FrameLayout>
    <android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@color/colorPrimary"
        app:itemIconTint="@color/nav_item_state_list"
        app:itemTextColor="@color/nav_item_state_list"
        app:menu="@menu/bottom_navigation_items" />
</RelativeLayout>

还将style.xml更改为:<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

MainActivity我添加了这个:

Toolbar toolbar= (Toolbar) findViewById(R.id.toolbar_detail);
setSupportActionBar(toolbar);

但即便如此,也没有在第一个Fragment

上显示

我做fragment.replace()来显示第一个Fragment,我不知道这是不是错了

2 个答案:

答案 0 :(得分:2)

加载片段的FrameLayout位于ToolBar之上。这就是你无法看到它的原因。将android:layout_marginTop="?android:attr/actionBarSize"添加到framelayout。

答案 1 :(得分:0)

将以下代码添加到Framelayout将解决问题。

android:layout_below="@id/toolbar_detail"

我希望我能提供帮助。