39

我正在重写我的简单 UI 应用程序以使用导航架构组件,我需要传递一个实现 Parcelable 的 Pojo,还没有看到任何关于如何做到这一点的文档。

任何帮助,将不胜感激。

4

4 回答 4

48

由于safe-args-gradle-plugin:1.0.0-alpha03您可以通过使用Parcelable对象的完全限定类名来使用对象:

<argument
    android:name="item"
    app:argType="com.example.app.model.Item"/>

现在支持 Parcelable 参数,对 app:type 使用完全限定的类名。唯一支持的默认值是“@null”(https://issuetracker.google.com/issues/79563966

来源:https ://developer.android.com/jetpack/docs/release-notes


为了支持可空性,必须使用android:defaultValue="@null"with app:nullable="true"

于 2018-10-01T15:18:22.183 回答
22

我知道答案已经存在,但这可能会对某人有所帮助。Code snippet

在 build.gradle 添加这个依赖

ext{
     ...
     navigation_version = '1.0.0-alpha11'
}
dependencies {
     ...
     classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
}

在 app/build.gradle

apply plugin: 'androidx.navigation.safeargs'
...

在导航图中


 <fragment
            android:id="@+id/source_fragment_id"
            android:name="app.test.SourceFragment"
            android:label="@string/source_fragment_label"
            tools:layout="@layout/source_fragment_layout">

         <action
                android:id="@+id/action_source_fragment_to_destination_fragment"
                app:destination="@id/destination_fragment_id"
                ...
                />


</fragment>

<fragment
            android:id="@+id/destination_fragment_id"
            android:name="app.test.DestinationFragment"
            android:label="@string/destination_fragment_label"
            tools:layout="@layout/destination_fragment_layout">

        <argument
                android:name="variableName"
                app:argType="app.test.data.model.CustomModel" />

        ...

</fragment>

注意:CustomModel 应该是 Parcelable 或 Serializable。

从 SourceFragment 导航到此 DestinationFragment 时

val direction = SourceFragmentDirections.ActionSourceFragmentToDestinationFragment(customModel)
findNavController().navigate(direction)

现在从 DestinationFragment 中的 bundle 中检索值

...
import app.test.DestinationFragmentArgs.fromBundle

class DestinationFragment : Fragment() {
   val variableName by lazy {
       fromBundle(arguments!!).variableName
   }

   ...
   override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        Log.e(DESTINATION_FRAGMENT_TAG,"onCreateView")

        //Can use CustomModel variable here i.e. variableName


   }

}
于 2019-02-04T05:24:08.217 回答
10

现在你不能使用除了integerstringinferredreference之外的类型的安全参数,有一个问题打开了要求其他类型。

您现在可以做的是在使用navigate()方法导航到目的地时通常传递一个包:

var bundle = bundleOf("amount" to amount)
view.findNavController().navigate(R.id.confirmationAction, bundle)

您可以使用通常的getArguments(或只是 kotlin 中的参数)来检索它:

val tv = view.findViewById(R.id.textViewAmount)
tv.text = arguments.getString("amount")
于 2018-06-03T11:37:11.367 回答
6

您可以使用boolean, reference, integer, long, string, enum,parcelable甚至serializable。但是忘记最后一个;-)

最好使用最新的插件版本safe-args-gradle-plugin:1.0.0-alpha08并指定完全限定的类名:

<fragment
    ...>
    <argument
        android:name="data"
        app:argType="com.example.ParcelableData" />
</fragment>

从你的

package com.example

data class ParcelableData(val content: String) : Parcelable { ... }

argType您可以发送所有s 的数组:

<argument
        android:name="data"
        app:argType="string[]" />
于 2018-12-21T14:47:12.430 回答