我想在我的主要活動中添加一個自定義標題,該標題已包含底部導航器和一個作爲我想要顯示的fragments
的容器的framelayout
。重疊主要活動內容的片段容器佈局
下面給出的代碼包含一個Linearlayout["@+id/application_header]
應作爲應用標題起作用,但是插頭由fragment
container[@+id/main_container]
顯示的重疊標頭。
嘗試了屬性android:layout_below
和android:layout_above
但它仍然重疊。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:design="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.amplitude.tron.volksradio.MainActivity">
<LinearLayout
android:id="@+id/application_header"
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:gravity="center_horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RADIO"
android:layout_gravity="center"/>
</LinearLayout>
<FrameLayout
android:id="@+id/main_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/application_header"
android:layout_above="@+id/bottomNavigationBar"
android:layout_alignParentTop="true">
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottomNavigationBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
design:menu="@menu/bottom_menu_navigation"
android:background="#50b1b5b9">
</android.support.design.widget.BottomNavigationView>
</RelativeLayout>
欣賞努力的任何少量的,已經有代碼中的相對佈局,但我爲此加上了遺憾,嘗試了第二種解決方案,它只是將導航菜單推到了屏幕之外。最後的解決方案不是我在尋找的,因爲我的標題是自定義的 – IteratioN7T
對於「工具欄」解決方案,您仍然可以使用自定義視圖。從[引用](https://developer.android.com/reference/android/support/v7/widget/Toolbar.html):「工具欄可能包含以下可選元素的組合:一個或多個自定義視圖。如果一個子視圖的Toolbar.LayoutParams表示一個重力值CENTER_HORIZONTAL,那麼視圖將嘗試在工具欄中剩餘的可用空間中居中其他元素已被測量。「 –