Пожалуйста, помогите с этим, я ходил кругами в течение нескольких часов!
У меня настроен навигационный ящик и панель инструментов (см. Код ниже)
Я не могу заставить работать функцию возврата / домой, так как нажатие на нее приводит к открытию ящика.
Это в моей MainActivity, вызывается во время OnCreate.
private fun initialiseViews() {
// Initialise the action bar as the XML toolbar, and set the Title as Dashboard
setSupportActionBar(toolbar)
supportActionBar!!.title = "Dashboard"
// Set-up the NavigationView and its listener
nav_view.setNavigationItemSelectedListener(this)
// Sets the hamburger toggle and its actions for the toolbar
val toggle = ActionBarDrawerToggle(
this, //host activity
drawer_layout, //Drawer Layout object
toolbar, // Toolbar Object
R.string.nav_open, //description for accessibility
R.string.nav_closed //description for accessibility
)
// Set the sync-state and draw-listener to the toggle (hamburger)
drawer_layout.addDrawerListener(toggle)
toggle.syncState()
}
Следующее находится в методе OnCreateView моих фрагментов ...
(activity as AppCompatActivity).supportActionBar!!.title = "About"
(activity as MainActivity).supportActionBar!!.setHomeButtonEnabled(true)
(activity as MainActivity).supportActionBar!!.setDisplayHomeAsUpEnabled(true)
Блок навигации работает нормально. Изменение названия моей панели инструментов работает нормально. Значок гамбургера заменен на стрелку назад внутри фрагмента просто отлично ...
Однако каждый раз, когда я нажимаю стрелку назад, он открывает ящик ... вроде как слушатель ящика находится над стрелкой назад ...
Реализация любого кода в OnOptionsItemSelected ничего не дает, так как этот метод не вызывается, поскольку он просто открывает ящик.
Был бы очень признателен, если бы кто-то указал на очевидное в том, что я сделал неправильно.
Спасибо.
EDIT
main_activity.xml по запросу для просмотра ...
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:background="@drawable/background_graphic">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:background="@color/colorLightOrange"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
app:menu="@menu/toolbar_list_menu"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/not needed for post" />
<android.support.v4.view.ViewPager
android:id="@+id/not needed for post" />
</FrameLayout>
<!-- Navigation Drawer -->
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header"
app:menu="@menu/navigation_menu" />