异步任务不是异步的

0 java android asynchronous

我正在Android中开发一个聊天应用程序并遇到了一个大问题.我需要一个线程在后台不断运行(轮询服务器),并通过Handle将它附加到我的主进程.

主要问题是:只要这个后台线程正在运行,前台的线程就会完全停止!

这是一个不完整的代码块(因为完整版本更长/更丑)...

public class ChatActivity extends Activity {
    ...

    private Thread chatUpdateTask;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_chat);

        ...

        chatUpdateTask = new ChatUpdateTask(handler);
        chatUpdateTask.start();
    }

    public void updateChat(JSONObject json) {
        // ...
        // Updates the chat display
    }


    // Define the Handler that receives messages from the thread and update the progress
    final Handler handler = new Handler() {
        public void handleMessage(Message msg) {
            // Get json from the sent Message and display it
            updateChat(json);
        }
    };

    public class ChatUpdateTask extends Thread {
        Handler mHandler;   // for handling things outside of the thread.

        public ChatUpdateTask(Handler h) {
            mHandler = h;               // When creating, make sure we request one!
        }//myTask

        @Override
        public void start() {
            while(mState==STATE_RUNNING) {

                // ...
                // Send message to handler here

                Thread.sleep(500);  // pause on completion

            }//wend
        }//end start

        /* sets the current state for the thread,
         * used to stop the thread */
        public void setState(int state) {
            mState = state;
        }//end setState


        public JSONObject getChatMessages() {
            // ... call server, return messages (could take up to 50 seconds to execute; 
            // server only returns messages when there are new ones
            return json;
        }
    }//end class myTask


}
Run Code Online (Sandbox Code Playgroud)

Dee*_*eeV 6

你是压倒性的start().线程在他们的run()方法中运行.

http://docs.oracle.com/javase/tutorial/essential/concurrency/runthread.html