缺少带 ID、导航图的必需视图 android

Missing required view with ID, navigation graph android

我的应用程序中有 2 个导航图 我有 2 个同名但不同 UI 的片段,它们也位于不同的包中。

现在我导航到一个片段,但当我导航到另一个片段时,我得到了异常

java.lang.NullPointerException: Missing required view with ID: com.octave.staging:id/cashPieChart
    at com.octave.more.databinding.CashDistributionFragmentBinding.bind(CashDistributionFragmentBinding.java:104)
    at com.octave.more.databinding.CashDistributionFragmentBinding.inflate(CashDistributionFragmentBinding.java:65)
    at com.octave.more.cash.CashDistributionFragment.onCreateView(CashDistributionFragment.kt:34)
    at androidx.fragment.app.Fragment.performCreateView(Fragment.java:2963)
    at androidx.fragment.app.FragmentStateManager.createView(FragmentStateManager.java:518)
    at androidx.fragment.app.FragmentStateManager.moveToExpectedState(FragmentStateManager.java:282)

这些是我的导航图

<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/dashboard_nav_graph"
app:startDestination="@id/dashboardFragment">

<fragment
    android:id="@+id/dashboardFragment"
    android:name="com.octave.dashboard.DashboardFragment"
    android:label="dashboard_fragment"
    tools:layout="@layout/dashboard_fragment" >
    <action
        android:id="@+id/action_dashboardFragment_to_equityFragment"
        app:destination="@id/dashboardCashDistributionFragment" />
    <action
        android:id="@+id/action_dashboardFragment_to_cashDistributionFragment"
        app:destination="@id/dashboardEquityFragment" />
</fragment>

<fragment
    android:id="@+id/dashboardEquityFragment"
    android:name="com.octave.dashboard.equity.EquityFragment"
    tools:layout="@layout/equity_fragment"
    android:label="EquityFragment" />

<fragment
    android:id="@+id/dashboardCashDistributionFragment"
    android:name="com.octave.dashboard.cash.CashDistributionFragment"
    android:label="cash_distribution_fragment"
    tools:layout="@layout/cash_distribution_fragment" />
</navigation>

第二张图

<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/more_nav_graph"
app:startDestination="@id/moreFragment">

<fragment
    android:id="@+id/moreFragment"
    android:name="com.octave.more.MoreFragment"
    android:label="more_fragment"
    tools:layout="@layout/more_fragment">
    <action
        android:id="@+id/action_moreFragment_to_equityFragment"
        app:destination="@id/equityFragment" />
    <action
        android:id="@+id/action_moreFragment_to_cashDistributionFragment"
        app:destination="@id/cashDistributionFragment" />
   
</fragment>
<fragment
    android:id="@+id/equityFragment"
    android:name="com.octave.more.equity.EquityFragment"
    android:label="equity_fragment"
    tools:layout="@layout/equity_fragment" />
<fragment
    android:id="@+id/cashDistributionFragment"
    android:name="com.octave.more.cash.CashDistributionFragment"
    android:label="cash_distribution_fragment"
    tools:layout="@layout/cash_distribution_fragment" />

 </navigation>

导航代码为

findNavController().navigate(DashboardFragmentDirections.actionDashboardFragmentToEquityFragment())

findNavController().navigate(MoreFragmentDirections.actionMoreFragmentToCashDistributionFragment())

两者都有不同的动作 ID 和位置。 似乎无法弄清楚问题

我的项目采用多模块方法 问题是由于视图绑定引起的,因为布局 xml 也具有相同的名称并且驻留在 2 个不同的模块中。

更改 1 xml 的名称后,它正在工作。

但是我没有得到的是相同的文件名存在于不同的包中,但视图绑定将它引用到第一个。