Skip to content Skip to sidebar Skip to footer

Calling Onactivityresult From Customarray Adapter

I have a class for custom ArrayAdapter for my ListView, below is the code. public class CustomArrayAdapterForProduct extends ArrayAdapter { private final A

Solution 1:

onActivityResult(int requestCode, int resultCode, Intent data) is Activity class method not for any JAVA class.

Its only works for Android Activity itself.

Post a Comment for "Calling Onactivityresult From Customarray Adapter"