我已经安装了最新的Canary版本的Android Studio,并按照此(https://developer.android.com/topic/libraries/architecture/navigation/navigation-implementing)指令实施了简单的两页导航。基本上page1有一个按钮,当单击它时,应用程序将显示page2。
它可以工作,但是有一个问题...它似乎无法自动执行操作栏。是否应该由导航库在操作栏上自动显示向上/向后箭头和“标签”属性?还是我应该像以前一样手动完成所有工作?我想在显示page2时在操作(工具)栏上显示后退箭头和“详细信息”。
在按钮上单击第1页。
override fun onViewCreated(view: View, savedInstanceState: Bundle?)
{
button1.setOnClickListener {
val nav = NavHostFragment.findNavController(this);
nav.navigate(R.id.show_page2)
}
}
主要活动XML。默认情况下,它是默认的操作栏,我已将其替换为工具栏。没有区别。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="?attr/actionBarSize"
android:elevation="4dp"
android:background="?attr/colorPrimary"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:layout_width="match_parent">
</androidx.appcompat.widget.Toolbar>
<fragment
android:id="@+id/my_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:defaultNavHost="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/toolbar"
app:navGraph="@navigation/nav_graph"/>
</androidx.constraintlayout.widget.ConstraintLayout>
导航图XML。
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/nav_graph"
app:startDestination="@id/page1">
<activity
android:id="@+id/mainActivity2"
android:name="com.android.navtest.MainActivity"
android:label="activity_main"
tools:layout="@layout/activity_main"/>
<fragment
android:id="@+id/page1"
android:name="com.android.navtest.BlankFragment2"
android:label="Home page"
tools:layout="@layout/page1">
<action
android:id="@+id/show_page2"
app:destination="@id/page2"
app:enterAnim="@anim/anim1"
app:popExitAnim="@anim/anim2"/>
</fragment>
<fragment
android:id="@+id/page2"
android:name="com.android.navtest.BlankFragment"
android:label="Details"
tools:layout="@layout/page2"/>
</navigation>
答案 0 :(得分:15)
您可以使用NavigationUI.setupActionBarWithNavController()
将ActionBar连接到NavController。通常,这是在您致电setSupportActionBar()
之后的活动中完成的:
supportActionBar = findViewById<Toolbar>(R.id.toolbar)
// Get the NavController for your NavHostFragment
val navController = findNavController(R.id.nav_host_fragment)
// Set up the ActionBar to stay in sync with the NavController
setupActionBarWithNavController(navController)
Navigation talk at Google I/O 2018中介绍了这种方法。
答案 1 :(得分:4)
如果要将导航后退按钮隐藏在多个位置(默认仅用于家庭片段),则可以将片段ID添加到AppBarConfiguration并将其作为setupActionBarWithNavController的第二个参数传递,例如:
val appBarConfiguration = AppBarConfiguration(setOf(R.id.splashFragment, R.id.onboardingFragment, R.id.homeFragment))
setupActionBarWithNavController(findNavController(R.id.nav_host), appBarConfiguration)
答案 2 :(得分:2)
这就是我所做的。
onSupportNavigateUp
在用户向上导航并再次设置时被调用。
通过调用此setupActionBarWithNavController
告诉android更新工具栏的标题。
navigateUp
通过将其行为委托给给定的NavController处理“向上”按钮。通常应从AppCompatActivity.onSupportNavigateUp()调用此方法。
private lateinit var appBarConfiguration: AppBarConfiguration
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val binding: ActivityGameConfigBinding =
DataBindingUtil.setContentView(this, R.layout.activity_game_config)
supportActionBar?.show()
val navController = Navigation.findNavController(this, R.id.myNavHostFragment)
NavigationUI.setupActionBarWithNavController(this, navController, null)
appBarConfiguration = AppBarConfiguration.Builder(navController.graph)
.build()
NavigationUI.setupWithNavController(binding.navView, navController)
}
override fun onSupportNavigateUp(): Boolean {
val navController = Navigation.findNavController(this, R.id.myNavHostFragment)
return NavigationUI.navigateUp(navController, appBarConfiguration)
}
答案 3 :(得分:1)
我的绑定解决方案-代码位于MainActivity
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = DataBindingUtil.setContentView(this, R.layout.main_activity)
navHostFragment = supportFragmentManager.findFragmentById(R.id.nav_host_fragment) as NavHostFragment
navController = navHostFragment.navController
setSupportActionBar(toolbar)//needs to be after binding
toolbar.setupWithNavController(navController,AppBarConfiguration(navController.graph))
}
关于标题-首先,我从导航图中的片段中删除了标签(android:label)(标签覆盖了我测试过的标题)
<fragment
android:id="@+id/productListFragment"
android:name="com.example.ProductListFragment"
android:label="TO_BE_REMOVED"
tools:layout="@layout/product_list_fragment">
<action
android:id="@+id/action_productListFragment_to_mainMenuFragment"
app:destination="@id/mainMenuFragment" />
</fragment>
每个片段在onResume
中设置标题和副标题,此处是ProductListFragment的示例
override fun onResume() {
super.onResume()
val actionBar = (activity as AppCompatActivity).supportActionBar
actionBar?.title = getString(R.string.product_list_title)
actionBar?.subtitle = getString(R.string.product_list_subtitle)
}