Skip to content Skip to sidebar Skip to footer

Onactivityresult ()

I have code which should allow me to take value from calculator and use it further: //-----------------This section creates the keypad functionality for (int o = 0; o < keybutto

Solution 1:

You cannot override onActivityResult inside OnClickListener because it does not exist in the base class. Move your onActivityResult code so that it is inside your Activity class, not the OnClickListner.


Post a Comment for "Onactivityresult ()"