从线程启动android活动

时间:2012-02-20 18:24:43

标签: java android multithreading

我想在这里做的是我想要调用web服务并根据其响应我可能会调用另一个webservice或启动一个activity.I我已经在一个单独的线程中编写Web服务但问题是我在工作线程中调用活动, 为了让自己更清楚,我已经把我的伪代码

if (User ID and Password present in the shared preference) THEN 
                 Utils.checkauthorisation(API)   //Web Service Call
                 if(respsonse is Paswordexpired)
                    erase password from DB
                    Goto (LOGIN SCREEN)
                 else if( download of images hasn't happened today) ) THEN
                        UTILS.DownloadImages//Web service call
                        if(response==connectivityorOtherError)
                            Toast respective Message
                            GOTO (GALLERY SCREEN)
                        else if (response==confilicted Data)
                            Goto (CHANGES SCREEN)
                        endif
                endif
endif

我计划显示一个进度条,并在这样的线程中执行所有这些事件

  progressDialog = ProgressDialog.show(this, "Loading",
                "Authenticating Please wait.");

     new Thread() {
        public void run() {

        ///execute the pseudo code

        Message msg = Message.obtain();
        msg.what = 1;
        messagHandler.sendMessage(msg);
        }

    }.start();



            private static Handler messagHandler = new Handler() {
    public void handleMessage(Message message) {
        super.handleMessage(message);
        switch (message.what) {
        case 1:
            progressDialog.dismiss();
            break;
        default:
            break;
        }
    }

};

但让我感到不安的是,我必须在这里开始一个工作线程中的活动这是一个好习惯吗?我最初认为我们只能从UI线程启动一个活动。后端发生的过程是什么(在线程意义上)?如果这不是一个好的做法,实现我的伪代码的其他替代方法是什么?

由于

1 个答案:

答案 0 :(得分:1)

启动intent并向Handler发送消息,而不是在您的工作线程上。处理程序在UI线程上运行。如果不是,您将无法更新处理程序中的UI元素。