我正在尝试在导航片段之间传递对象。我能够构建该项目,但是当它启动时,我在nav_graph上收到一个错误,指出:“异常膨胀了nav_graph第20行”。第20行是nav_graph上的参数行。我只是在尝试传递并设置nav_graph的类的顶部添加了@Parcelize关键字。我还需要做其他事情吗?
团队班级:
@Parcelize
public class Team {
@SerializedName("idTeam")
@Expose
private String idTeam;
@SerializedName("idSoccerXML")
@Expose
private String idSoccerXML;
@SerializedName("idAPIfootball")
@Expose
private String idAPIfootball;
@SerializedName("intLoved")
@Expose
private String intLoved;
@SerializedName("strTeam")
@Expose
private String strTeam;
@SerializedName("strTeamShort")
@Expose
private String strTeamShort;
导航图:
<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/homeFragment">
<fragment
android:id="@+id/homeFragment"
android:name="com.jaykallen.searchapi.ui.HomeFragment"
android:label="HomeFragment">
<action
android:id="@+id/action_homeFragment_to_resultsFragment"
app:destination="@id/resultsFragment" />
</fragment>
<fragment
android:id="@+id/resultsFragment"
android:name="com.jaykallen.searchapi.ui.ResultsFragment"
android:label="ResultsFragment">
<argument
android:name="choice"
app:argType="com.jaykallen.searchapi.model.Team"
app:nullable="true" />
</fragment>
</navigation>
HomeFragment方法:
private fun choiceClicked(chosen: Team) {
println("User clicked: ${chosen.strTeam}")
homeViewModel.choice = chosen
val action = HomeFragmentDirections.actionHomeFragmentToResultsFragment(chosen)
Navigation.findNavController(view!!).navigate(action)
}
ResultsFragment方法:
private fun getSafeArgs() {
arguments?.let {
val args = ResultsFragmentArgs.fromBundle(it)
teamChosen = args.choice
if (teamChosen != null) {
println("Safe Argument Received=${teamChosen?.strTeam}")
updateUi(teamChosen)
}
}
}
答案 0 :(得分:1)
事实证明,您要做的就是在Java对象上实现Parcelable
接口。通常,如果您使用的是Kotlin,则@Parcelize
注释将不允许您在没有Parcelable
接口的情况下进行编译。看来这种编译时保护不适用于Java代码。
通过使用Java对象,您还将失去@Parcelize
批注附带的所有自动代码生成功能。
换句话说,如果您想利用@Parcelize
注释,建议您将Java文件转换为Kotlin。