FragmentDirections不是由Safe Args插件生成的

时间:2019-11-25 15:24:22

标签: android kotlin android-safe-args

当我尝试使用Safe Args插件从一个片段跳转到另一个片段时,编译器显示“未解析的参考:VideoFragmentDirections”。 我已经为安全的args设置了类路径和依赖关系,并且VideoFragmentArgs已正确生成。 kotlin_version ='1.3.50' navigation-args-gradle-plugin:2.1.0 在我的xml中

<fragment
        android:id="@+id/nav_home"
        android:name="example.ui.home.HomeFragment"
        android:label="@string/menu_home"
        tools:layout="@layout/fragment_home" >
        <action
            android:id="@+id/action_nav_home_to_videoFragment"
            app:destination="@id/videoFragment"
            app:popUpTo="@+id/nav_home"/>
    </fragment>
<fragment
        android:id="@+id/videoFragment"
        android:name="example.ui.videoui.VideoFragment"
        android:label="VideoFragment" >
        <argument
            android:name="id"
            app:argType="long"
            android:defaultValue="0L" />
    </fragment>

然后在HomeFragment.ky

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        val videoViewModel = ViewModelProviders
            .of(this)
            .get(HomeViewModel::class.java)
        val adapter = video_list.adapter!! as PlaylistAdapter
        videoViewModel.videos.observe(this, Observer<List<Video>> {
            adapter.submitList(it)
            adapter.onItemClickListener = View.OnClickListener { v ->

                val viewHolder = v.tag as RecyclerView.ViewHolder
                val position = viewHolder.adapterPosition
                val id = it[position].id
                val action = VideoFragmentDirections.actionhHomeToVideo(id)
                view.findNavController().navigate(action)
            }
        })
}

此外,我曾尝试清理并重建项目,但仍然无法正常工作。

2 个答案:

答案 0 :(得分:0)

尝试

apply plugin: "androidx.navigation.safeargs.kotlin"

在应用程序build.gradle中

答案 1 :(得分:0)

添加新的依赖项后,请确保重建项目。如果需要,还可以更新Project gradle文件中的版本。

这很好。