导航组件:可包裹参数,但出现错误 类型不匹配:推断类型为学生,但字符串是预期的



在我的根build.gradle中,我有navigation-safe-args-gradle-plugin版本2.2.0-rc03

script{
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.2.0-rc03'
}
}

在我的导航图 xml 中:

<fragment
android:id="@+id/MyListFragment"
android:name="com.foo.bar.ui.mylist.MyListFragment"
android:label="My List">
<action
android:id="@+id/action_myListFragment_to_myDetailFragment"
app:destination="@id/myDetailFragment" />
<!--Here I pass parcelable type as argument-->
<argument
android:name="Student"
app:argType="com.foo.core.model.Student"/>
</fragment>

Student是正常的班级。

package com.foo.core.model
@Parcelize
data class Student(val studentNumber: Int): Parcelable

在我的片段中,我做到了:

val student:Student=Student(123)
findNavController().navigate(actionMyListFragmentToMyDetailFragment(student))

当我构建我的项目时,我收到编译器错误:

Type mismatch: inferred type is Student but String was expected

为什么?

把你的argument放在MyDetailsFragment而不是MyListFragment中,所以

我的列表片段

<fragment
android:id="@+id/MyListFragment"
android:name="com.foo.bar.ui.mylist.MyListFragment"
android:label="My List">
<action
android:id="@+id/action_myListFragment_to_myDetailFragment"
app:destination="@id/MyDetailsFragment" />
</fragment>

我的详情片段

<fragment
android:id="@+id/MyDetailsFragment"
android:name="com.foo.bar.ui.mylist.MyDetailsFragment"
android:label="My Details">
<argument
android:name="Student"
app:argType="com.foo.core.model.Student"/>
</fragment>

相关内容

最新更新