Is there a way to pass a function reference between activities?

后端 未结 5 463
后悔当初
后悔当初 2020-12-10 12:05

is there a way of bundling function references in Kotlin and Android so that the functions can be called from other fragments? For instance, my fragment factory method look

相关标签:
5条回答
  • 2020-12-10 12:14

    No, as others say, there is no way of passing a function literal to Bundle.

    But since enum implements Serializable, you can pass enum variables that can hold some methods. Try below codes;

    enum class SampleEnum(val f: () -> Unit) {
        Sample0({
            Log.d("enum Test", "sample 0")
        }),
        Sample1({
            Log.d("enum Test", "sample 1")
        }),
    }
    

    in your from-activity (or fragment);

    bundle.putSerializable("sample_enum",SampleEnum.Sample0)
    

    in your to-activity (or fragment);

     // invoke your fuction
    (bundle.getSerializable("sample_enum") as SampleEnum).f()
    
    0 讨论(0)
  • 2020-12-10 12:17

    If it is not possible to put a function literal into a Bundle, however, you can pass the function to the Fragment through a setter like function in the Fragment.

    fun setTryAgainFunction(tryAgainFunction: () -> Unit) {
    
    }
    
    0 讨论(0)
  • Yes, there is a simple solution to this that I've been using in my projects. The idea is to wrap any reference types/objects in a warper class that is Parcalabe and Serializable without actually implementing marshaling of the underlying reference type. Here is the wrapper class and how to use it without causing any potential memory leak:

    @Parcelize @kotlinx.serialization.Serializable
    data class TrackedReference<ReferenceType: Any> private constructor(
        private var uniqueID: Int = -1
    ) : Serializable, Parcelable {
    
        constructor(reference: ReferenceType) : this() {
            uniqueID = System.identityHashCode(this)
            referenceMap.set(uniqueID, reference)
        }
    
        val get: ReferenceType?
            get() = referenceMap.get(uniqueID) as? ReferenceType
    
        fun removeStrongReference() {
            get?.let { referenceMap.set(uniqueID, WeakReference(it)) }
        }
    
        companion object {
            var referenceMap = hashMapOf<Int, Any>()
                private set
        }
    
    }
    

    Any object can be wrapped in a TrackedReference object and passed as serializable or parcelable:

    class ClassA {
        fun doSomething { }
    }
    
    // Add instance of ClassA to an intent
    val objectA = ClassA()
    intent.putExtra("key", TrackedReference(objectA))
    

    You can also pass a weak or soft reference depending on the use case.

    Use case 1:

    The object (in this case objectA) is not guaranteed to be in memory by the time the receiver activity needs to use it (e.g. might be garbage collected).

    In this case, the object is kept in memory until you explicitly remove the strong reference. Pass in an Intent or Bundle inside this wrapper and accesse in a straightforward manner, e.g. (psuedocode)

    class ClassA {
        fun doSomething { }
    }
    
    // Add instance of ClassA to an intent
    val objectA = ClassA()
    intent.putExtra("key", TrackedReference(objectA))
    
    // Retrieve in another activity
    val trackedObjectA = intent.getSerializable("key") as TrackedReference<ClassA>
    trackedObjectA.get?.doSomething()
    
    // Important:- to prevent potential memory leak,
    // remove *strong* reference of a tracked object when it's no longer needed.
    trackedObjectA.removeStrongReference()
    

    Use case 2:

    The object is guaranteed to be in memory when needed, e.g. an activity that is housing a fragment is guaranteed to remain in memory for the lifecycle of the fragment.

    Or, we do not care if the object is garbage collected, and we do not want to be the reason for its existence. In this case, pass a weak or soft reference when initializing a TrackedReference instance:

    // Removing the strong reference is not needed if a week reference is tracked, e.g. 
    val trackedObject = TrackedReference(WeakReference(objectA)) 
    trackedObject.get?.doSomething()
    

    Its best to understand why Intent requires Parcelable or Serializable and what's the best way to use this workaround in a given scenario.

    It's certainly not ideal to serialize objects to allow delegation or callback communication between activities.

    Here is the documentation on Intent but simply put, an Intent is passed to the Android System which then looks-up what to do with it and in this case starts the next Activity (which can be another app as far as the Android System receiving the intent is concerned). Therefore, the system needs to make sure that everything inside an intent can be reconstructed from parcels.

    Rant:

    IMO, Intent as a higher level abstraction for IPC (Inter Process Communication) maybe convenient and efficient internally but at the cost of these limitations. It's maybe comparing Apples to oranges but in iOS, ViewControllers (similar to Activities) are like any class and can be passed any Type (value or reference) as an argument. The developer is then responsible to avoid potential reference-cycles that might prevent ARC (memory management) to free unused references.

    0 讨论(0)
  • 2020-12-10 12:34

    If tryAgainFunction is Serializable, then you can put it into the bundle using bundle.putSerializable("try_again_function", tryAgainFunction);.

    It will actually be Serializable if it is a function reference (SomeClass::someFunction) or a lambda. But it might not be, if it is some custom implementation of the functional interface () -> Unit, so you should check that and handle the cases when it's not.

    0 讨论(0)
  • 2020-12-10 12:36

    Maybe too late but:

    Have you tried to put the val callback inside the companion object? Solution may be something like:

    companion object {
        private lateinit var callback 
    
        fun newInstance(tryAgainFunction: () -> Unit): TimeOutHandlerFragment {
            val fragment = TimeOutHandlerFragment()
            this.callback = tryAgainFunction
            return fragment
        }
    }
    
    override fun onViewCreated(view: View?, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        btnTryAgain.setOnClickListener { callback.invoke() }
    }
    
    0 讨论(0)
提交回复
热议问题