我正在使用Android Jetpack导航组件。
我有一个带有ID的嵌套导航图,例如R.id.nested_graph
嵌套图的第一个Fragment
接收一个参数。
<navigation
android:id="@+id/nested_graph"
android:label="Nested Graph"
app:startDestination="@id/firstFragment">
<fragment
android:id="@+id/firstFragment"
android:name="...."
android:label="....">
<argument
android:name="item_id"
app:argType="integer" />
</fragment>
[...]
</navigation>
如何使用安全参数将参数传递给嵌套图 ?
此刻,我需要使用直接接收嵌套图ID的API在捆绑包中手动传递参数:
val args = Bundle()
args.putInt("item_id", itemId)
navController.navigate(R.id.nested_graph, args)
我想使用安全的参数,并执行以下操作:
val directions = OrigininFragmentDirections.nestedGraph(itemId)
navController.navigate(directions)
但是尝试这样做时,在构建时出现以下错误:
Too many arguments for public final fun nestedGraph(): NavDirections defined
问题是导航图预处理正在生成工厂方法来创建NavDirections
对象,而签名中不需要的参数。
嵌套图的声明如下:
答案 0 :(得分:3)
@GaRRaPeTa 答案几乎是正确的,但如果您使用 SafeArgs 从主图导航到嵌套图,则还必须向操作添加参数:
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/graph_main"
app:startDestination="@id/mainFragment">
<fragment
android:id="@+id/mainFragment"
android:name="com.example.MainFragment">
<action
android:id="@+id/toNestedGraph"
app:destination="@id/graph_nested">
<argument
android:name="arg_name"
app:argType="string" />
</action>
</fragment>
</navigation>
答案 1 :(得分:1)
经过反复试验(我认为Google并没有正式记录它,或者至少我找不到它),我发现可以安全地导航到嵌套的导航图并传递参数:>
您需要将第一个片段期望的argument
XML对象添加到嵌套片段本身的根中。
在我的情况下,ID为firstFragment
的片段(这是嵌套图中的第一个片段)收到:
<argument
android:name="item_id"
app:argType="integer" />
因此,我需要将该参数添加到嵌套图:
<navigation
android:id="@+id/nested_graph"
android:label="Nested Graph"
app:startDestination="@id/firstFragment">
<argument
android:name="item_id"
app:argType="integer" />
<fragment
android:id="@+id/firstFragment"
android:name="...."
android:label="....">
<argument
android:name="item_id"
app:argType="integer" />
</fragment>
[...]
</navigation>
现在我可以使用以下方法导航到它:
val directions = OrigininFragmentDirections.nestedGraph(itemId)
navController.navigate(directions)
请注意,导航图编辑器不会为您执行此操作。这需要在XML代码中手动完成。