开发者

Android : how to initialize an activity in background before displaying it

I have an activity in which I display an image that is stored on a website. I am using the following code to get it from its url and display the activity :

public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    Log.i(TAG, "onCreate");
    setContentView(R.layout.ad_screen);

    AsyncTask<String, Void, Integer> task = new AsyncTask<String, Void, Integer>() 
    {
        /** The system calls this to perform work in a worker thread and
         * delivers it the parameter开发者_如何转开发s given to AsyncTask.execute() */
        @Override
        protected Integer doInBackground(String... urls) 
        {
            fetchAd();
            return 0; 
        }

        /** The system calls this to perform work in the UI thread and delivers
         * the result from doInBackground() */
        @Override
        protected void onPostExecute(Integer result) 
        {
            displayAd();
        }
    };
    task.execute("");
}

That works very fine, but the behaviour is not the one I want : in this case, the activity is pushed on the screen (with a right to left animation) and then the AsyncTask begins. So the image is displayed on screen after a delay (which is normal).

But I would like to perform the request before the activity is pushed, so that the screen is displayed directly with its image without any delay.

Is there a way to have this behaviour ? Thanks in advance.


You can download the image in the previous activity, create a bitmap, then pass it as an extra in the intent that launches this activity.


Use AsyncTask to load images in previous activity, and display the images in the current activity.


You could in the "parent" activity, the one that starts the new activity, do the fetching of the content, store it either in memory or some sort of fast access persistence, and after that start the activity.

Same principle could be to introduce a "loader" activity which would show a loader, and prefetch the data, when all data received it would start the activity that should display the data.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜