简体   繁体   中英

Can't create handler inside thread that has not called Looper.prepare() inside Handler()

I am calling a Handler class from a background thread. In the Handler class, I am trying to display a toast. Theoratically it should work flawlessly because Handler is the Queue that forwards the UI tasks to the main UI thread. However, in my case the I am getting exception.

private void firstTimeLogin() {

        final LoginUiThreadHandler loginHandler = new LoginUiThreadHandler();

        new Thread(new Runnable() {
            @Override
            public void run() {
                Message m = loginHandler.obtainMessage();

                Bundle bund = new Bundle();
                bund.putInt("loginResult", 1);
                m.setData(bund);

                loginHandler.handleMessage(m);
            }
        }).start();
    }

    private class LoginUiThreadHandler extends Handler {

        @Override
        public void handleMessage(Message msg) {
            super.handleMessage(msg);

            int loginResult = msg.getData().getInt("loginResult");
            if(loginResult == 0) 
                Toast.makeText(getActivity().getApplicationContext(), "Login success", Toast.LENGTH_SHORT).show();

        }
    }

What am I doing wrong?

Replace with -

LoginUiThreadHandler loginHandler = new LoginUiThreadHandler(Looper.getMainLooper());

instead of-

LoginUiThreadHandler loginHandler = new LoginUiThreadHandler();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM