在使用findNavController()导航Fragment,动态设置目标destination 的标题
<fragment
android:id="@+id/displayFragment"
android:name="com.commonsware.jetpack.sampler.nav.DisplayFragment"
android:label="{title}" >
<argument
android:name="modelId"
app:argType="string" />
<argument
android:name="title"
app:argType="string" />
</fragment>
Bundle().apply {
putString("title","动态标题崆")
findNavController().navigate(R.id.displayFragment,this)
}