use startActivityForResult from non-activity

JavaAndroid

Java Problem Overview


I have MainActivity which is an Activity and other class(which is a simple java class), we`ll call it "SimpleClass". now i want to run from that class the command startActivityForResult.

now i though that i could pass that class(SimpleClass), only MainActivity's context, problem is that, u cant run context.startActivityForResult(...);

so the only way making SimpleClass to use 'startActivityForResult; is to pass the reference of MainActivity as an Activity variable to the SimpleClass something like that:

inside the MainActivity class i create the instance of SimpleClass this way:

SimpleClass simpleClass=new SimpleClass(MainActivity.this);

now this is how SimpleClass looks like:

public Class SimpleClass {

Activity myMainActivity;

   public SimpleClass(Activity mainActivity) {
       super();
       this.myMainActivity=mainActivity;	
   }
....


    public void someMethod(...) {
        myMainActivity.startActivityForResult(...);
    }

}

now its working, but isnt a proper way of doing this? I`am afraid i could have some memory leaks in the future.

thanks. ray.

Java Solutions


Solution 1 - Java

I don't know if this is good practice or not, but casting a Context object to an Activity object compiles fine.

Try this:

if (mContext instanceof Activity) {
		((Activity) mContext).startActivityForResult(...);
} else {
        Log.e("mContext should be an instanceof Activity.");
} 

This should compile, and the results should be delivered to the actual activity holding the context.

Solution 2 - Java

If you need to get the result from the previous Activity, then your calling class needs to be of type Activity.

What is the purpose of you calling Activity.startActivityForResult() if you never use the result (at least according to the sample code you posted).

Does myMainActivity do anything with the result? If so, then just make SimpleClass a subclass of Activity and handle the result from within SimpleClass itself.
If myMainActivity needs the result, then maybe you should refactor the code to start the activity from myMainActivity.

Solution 3 - Java

Better solution is :

  1. Making SimpleClass a subclass of your Activity class
  2. calling another Activity as startActivityForResult
  3. handling the result within SimpleClass itself

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionraymanView Question on Stackoverflow
Solution 1 - JavaSome Noob StudentView Answer on Stackoverflow
Solution 2 - JavacodinguserView Answer on Stackoverflow
Solution 3 - Javagtiwari333View Answer on Stackoverflow