I'm trying to reduce the noise in my activity classes (Android) and the first thing I've pulled out is the async tasks I had as inner classes. The only issue I'm having is that I'm not able to pass the AppDelegate ref from the activity to the async task once it's moved out.

Here is my (failed) attempt at it

//here I pass the ref from the activity

public class HelloAndroidActivity extends Activity {
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);

        GetSessionsAsyncTask task = new GetSessionsAsyncTask(HelloAndroidActivity.this, getApplicationContext());
        task.execute();
    }
}

//here I push it to a field to use it later (but it fails during the init of this obj)

public class GetSessionsAsyncTask extends AsyncTask<String, Void, List<Session>> {
    private Activity activity;
    private AppDelegate delegate;

    public GetSessionsAsyncTask(Activity activity, Context context) {
        this.activity = activity;
        this.delegate = (AppDelegate) context;
    }
}

Edit

the app delegate I mention above just extends application (android class)

public class AppDelegate extends Application {
}
link|improve this question

what is AppDelegate? – aromero Sep 6 '11 at 1:02
great question (sorry I didn't clarify) - update above – Toran Billups Sep 6 '11 at 1:29
1  
Did you declare AppDelegate to be your Application class in your Manifest? – aromero Sep 6 '11 at 2:08
exactly my issue - throw an answer down so you can get some credit for helping a n00b android dev :) – Toran Billups Sep 6 '11 at 3:06
1  
Note that you can use AppDelegate as a singleton and avoid the casting. – aromero Sep 6 '11 at 13:44
feedback

2 Answers

up vote 1 down vote accepted

You need to declare AppDelegate to be your Application class in the Manifest:

<application android:name=".AppDelegate" ... >
    ...
</application>
link|improve this answer
feedback

A few things:

  1. What does 'but it fails during the init of this obj'? Do you get an exception? If yes, what? Post stack trace.
  2. You can get get the application from the activity (first param), so you don't really need the second parameter to your constructor. If you want to keep it, change it to something more specific than Context (keep in mind that AppDelegate is an Application is a Context)
  3. You might want to execute your task from onStart() instead of onCreate() to be sure that your activity is properly initialized before your kick off the task.
link|improve this answer
excellent advice for a developer new to the Android stack! – Toran Billups Sep 6 '11 at 12:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.