我正在Android Jetpack Navigation
使用native java
. 事情是compiler
自动生成负责导航图中定义的动作的类,带有对应的参数setters and getters
,但它不是生成带有参数的构造函数,而只是一个空的static constructor
。
有什么方法可以使safeArgs plugin
或Navigation framework
创建 this 构造函数arguments
?
我的xml:
<?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/edicion_basica_navigation"
app:startDestination="@id/nav_A_fragment">
<fragment
android:id="@+id/nav_A_fragment"
android:name="com.fragments.A"
android:label="@string/A"
tools:layout="@layout/fragment_a">
<argument
android:name="@string/arg_id"
android:defaultValue="0"
app:argType="integer" />
<argument
android:name="@string/arg_rowid"
android:defaultValue="0"
app:argType="integer" />
</fragment>
<fragment
android:id="@+id/nav_B_fragment"
android:name="com.fragments.B"
android:label="@string/b"
tools:layout="@layout/fragment_b">
<argument
android:name="@string/arg_id"
android:defaultValue="0"
app:argType="integer" />
<argument
android:name="@string/arg_rowid"
android:defaultValue="0"
app:argType="integer" />
</fragment>
<action
android:id="@+id/A_to_B"
app:destination="@id/nav_B_fragment" />
</navigation>
谢谢