Skip to content Skip to sidebar Skip to footer

Android Studio: Pass Parcelable Data To Call Service (phone Call App)

I am using this app as a framework and trying to pass an object to my own UI Phone Call . But when I try to put my object into myAdapter: Call.putExtra('itemObject', items.get(posi

Solution 1:

Sorry, but I have a correct answer but it's not what you expect. It's not impossible to pass custom parameters to Intent.ACTION_CALL because the real call to the Phone App is created by the system that ignores all custom parameters (extra in your Intent.ACTION_CALL call).


Post a Comment for "Android Studio: Pass Parcelable Data To Call Service (phone Call App)"