我正在做一个简单的导航图,并且没有生成导航方向组件。这是导航图:
<?xml version="1.0" encoding="utf-8"?>
<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/ratings_nav_graph"
app:startDestination="@id/ratingReportThanksFragment">
<fragment
android:id="@+id/ratingReportThanksFragment"
android:name="media.luminary.phone.luminary.screens.rating.RatingReportThanksFragment"
android:label="RatingReportThanksFragment"
tools:layout="@layout/fragment_rating_report_thanks" >
<argument
android:name="podcastUUID"
app:argType="string" />
<action
android:id="@+id/action_ratingReportThanksFragment_to_podcastDetailsFragment"
app:destination="@id/podcastDetailsFragment"
app:enterAnim="@anim/fade_in_left"
app:exitAnim="@anim/fade_out"
app:popUpTo="@id/podcastDetailsFragment" />
</fragment>
<fragment
android:id="@+id/podcastDetailsFragment"
android:name="media.luminary.phone.luminary.screens.podcast.PodcastDetailsFragment"
android:label="PodcastDetailsFragment"
tools:layout="@layout/fragment_podcast_details_old"/>
</navigation>
这是一个较大的导航图的一部分,但我将其拆分以查看是否会生成该动作。它没有。我希望它会生成一个名为RatingsNavGraphDirections.kt
的文件我在做什么错了?