Hi,
I begin to develop an Android app and in one, when the user click on a button, the initiateScan is called. But on onActivityResult, I can't retrieve the attributes of my previous activity.
Here my code :
Calling the initiate scan :
public void startingOperation(Tablette tab){
IntentIntegrator integrator = new IntentIntegrator(tab.acti);
integrator.initiateScan();
}
tab is the class which is extended Activity, and acti is its private attribute which contain this activity.
In the onActivityResult method, i'm looking for to retrieve my attributes which i have store into my previous activity (tab.acti).
Thanks for your help