我创建了一个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
,我不知道这是不是错了
答案 0 :(得分:2)
加载片段的FrameLayout位于ToolBar之上。这就是你无法看到它的原因。将android:layout_marginTop="?android:attr/actionBarSize"
添加到framelayout。
答案 1 :(得分:0)
将以下代码添加到Framelayout将解决问题。
android:layout_below="@id/toolbar_detail"
我希望我能提供帮助。