Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was reading about AsyncTask and I tried a simple program. But it does not seem to work. I am new to android programming, if possible can you please help me out.

package com.test;

import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.provider.Settings.System;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.view.View.OnClickListener;

public class AsyncTaskActivity extends Activity {
Button btn;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    btn = (Button) findViewById(R.id.button1);
    btn.setOnClickListener((OnClickListener) this);
}

public void onClick(View view){
    new LongOperation().execute("");
}

private class LongOperation extends AsyncTask<String, Void, String> {

      @Override
      protected String doInBackground(String... params) {
            for(int i=0;i<5;i++) {
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
            TextView txt = (TextView) findViewById(R.id.output);
            txt.setText("Executed");
            return null;
      }      

      @Override
      protected void onPostExecute(String result) {               
      }

      @Override
      protected void onPreExecute() {
      }

      @Override
      protected void onProgressUpdate(Void... values) {
      }
}

}

I am just trying to change the label after 5 seconds in the background process. This is my main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ProgressBar 
    android:id="@+id/progressBar"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:indeterminate="false"
    android:max="10"
    android:padding="10dip">            
</ProgressBar>
<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Start Progress" >
</Button>
<TextView android:id="@+id/output"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Replace"/>

</LinearLayout>

Thanks for the help.

share|improve this question
4  
When you say "it doesn't work" - what do you mean? – Aleks G Mar 12 '12 at 17:10
also you can show the progress by calling publishprogress() from the doInBackground() method. – osum Sep 9 '12 at 18:21
2  
here is asynctask example AsyncTask Example – Samir Mangroliya Feb 28 at 10:25

4 Answers

up vote 85 down vote accepted

Ok you are trying to access the GUI via another thread. This, in the main, is not good practice.

The AsyncTask executes everything in doInBackground() inside of another thread, which does not have access to the GUI where your views are.

preExecute() and postExecute() offer you access to GUI before and after the heavy lifting occurs in this new thread, you can even pass the result of the long operation to postExecute() to then show any results of processing.

See these lines where you later yout TextView:

TextView txt = (TextView) findViewById(R.id.output);
txt.setText("Executed");

put them in PostExecute()

You will then see you TextView text update after the doInBackground completes.

EDIT: I noticed that your onClick listener does not check to see which View has been selected. I find the easiest way to do this is via switch statements. I have a complete class edited below with all suggestions to save confusion.

    import android.app.Activity;
    import android.os.AsyncTask;
    import android.os.Bundle;
    import android.provider.Settings.System;
    import android.view.View;
    import android.widget.Button;
    import android.widget.TextView;
    import android.view.View.OnClickListener;

    public class AsyncTaskActivity extends Activity implements OnClickListener {
    Button btn;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        btn = (Button) findViewById(R.id.button1);.
                    //because we implement OnClickListener we only have to pass "this" (much easier)
        btn.setOnClickListener(this);
    }

    public void onClick(View view){
        //detect the view that was "clicked"
        switch(view.getId())
        {
          case R.id.button1:
              new LongOperation().execute("");
          break;

        }

    }

    private class LongOperation extends AsyncTask<String, Void, String> {

          @Override
          protected String doInBackground(String... params) {
                for(int i=0;i<5;i++) {
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }

                return "Executed";
          }      

          @Override
          protected void onPostExecute(String result) {
                TextView txt = (TextView) findViewById(R.id.output);
                txt.setText("Executed"); // txt.setText(result);
                //might want to change "executed" for the returned string passed into onPostExecute() but that is upto you
          }

          @Override
          protected void onPreExecute() {
          }

          @Override
          protected void onProgressUpdate(Void... values) {
          }
    }   
share|improve this answer
Thanks a lot!!! – Fox Mar 12 '12 at 17:25
No worries - you may want to select an answer from the ones given as accepted via the green tick, for future users who have similar issues. – Graham Smith Mar 12 '12 at 17:30
I am unable to do this <code> btn.setOnClickListener(this); </code> Eclipse gives an error ----- "The method setOnClickListener(View.OnClickListener) in the type View is not applicable for the arguments (AsyncTaskActivity)" – Fox Mar 12 '12 at 17:33
Might be due to low rep, come back when you have a little bit more as (in theory) you don't want a low acceptance rate. – Graham Smith Mar 12 '12 at 17:34
2  
@EricTobias - I do agree with you, hence I added the comment however the answer I gave answers the original question asked by Fox where they set the text view to a string inline. I realise this is bad but this is not the question they are asking. I have clearly marked in the comment under what may happen in practice but many users simplify their code to prevent their questions becoming too localized. If you want to start pulling hairs then the use of Thread.sleep() and the way it is used should horrify you more. – Graham Smith Jan 2 at 16:30
show 6 more comments

I'm sure it is executing properly, but you're trying to change the UI elements in the background thread and that won't do.

Revise your call and AsyncTask as follows:

Calling Class

Note: I personally suggest using onPostExecute() wherever you execute your AsyncTask thread and not in the class that extends AsyncTask itself. I think it makes the code easier to read especially if you need the AsyncTask in multiple places handling the results slightly different.

new LongThread()
{
    @Override public void onPostExecute(String result)
    {
        TextView txt = (TextView) findViewById(R.id.output);
        txt.setText(result);
    }
}.execute("");

AsyncTask class:

  @Override
  protected String doInBackground(String... params) {
        for(int i=0;i<5;i++) {
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        return "Executed";
  }      
share|improve this answer

Simply

LongOperation MyTask= new LongOperation();
        MyTask.execute();
share|improve this answer

Move these two lines:

TextView txt = (TextView) findViewById(R.id.output);
txt.setText("Executed");

out of your AsyncTask's doInBackground method and put them in the onPostExecute method. Your AsyncTask should look something like this:

private class LongOperation extends AsyncTask<String, Void, String> {

    @Override
    protected String doInBackground(String... params) {
        try {
            Thread.sleep(5000); // no need for a loop
        } catch (InterruptedException e) {
            Log.e("LongOperation", "Interrupted", e);
            return "Interrupted";
        }
        return "Executed";
    }      

    @Override
    protected void onPostExecute(String result) {               
        TextView txt = (TextView) findViewById(R.id.output);
        txt.setText(result);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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