0

我正在遵循使用 messenger 绑定服务的 android 指南上的示例并运行以下代码片段。我稍微修改了代码片段,使其具有一个 hi 和一个 bye 按钮,并且服务应该根据 UI 上按下的按钮显示 toast hi 或 bye。

但是在运行示例 toast 时不显示。虽然消息接收日志打印在 UI 上。

这是什么原因。onStart of Acticity 的 toast 也不会显示。

public class MessengerService extends Service {
    public final static int MSG_SAY_HELLO = 1;
    public final static int MSG_SAY_BYE = 2;

    final Messenger mMessenger = new Messenger(new IncomingHandler());

    public static final String LOG_TAG = MessengerService.class.getName();

    @Override
    public IBinder onBind(Intent intent) {
        Toast.makeText(this, "binding", Toast.LENGTH_SHORT);
        return mMessenger.getBinder();
    }

    public class IncomingHandler extends Handler {
        @Override
        public void handleMessage(Message message) {
            Log.d(LOG_TAG, "new msg arrived");
            switch (message.what) {
                case MSG_SAY_HELLO:
                    Toast.makeText(getApplicationContext(), "hello!", Toast.LENGTH_SHORT);
                    break;
                case MSG_SAY_BYE:
                    Toast.makeText(getApplicationContext(), "bye!", Toast.LENGTH_SHORT);
                    break;
                default:
                    super.handleMessage(message);
            }
        }
    }
}

public class MyActivity extends Activity {

    Messenger mServiceMessenger = null;
    boolean mBound = false;

    private ServiceConnection mServiceConnection = new ServiceConnection() {
        public void onServiceConnected(ComponentName componentName, IBinder binder) {
            mServiceMessenger = new Messenger(binder);
            mBound = true;
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {
            mBound = false;
            mServiceMessenger = null;
        }
    };

    private void sayHello() {
        if(mBound){
            Message msg  = Message.obtain(null, MessengerService.MSG_SAY_HELLO, 0, 0);
            try{
                mServiceMessenger.send(msg);
            } catch (RemoteException e) {
                e.printStackTrace();
            }

        } else {
            Toast.makeText(this, "not bound yet", Toast.LENGTH_SHORT);
        }
    }

    public void sayBye() {
        if(mBound) {
            Message msg  = Message.obtain(null, MessengerService.MSG_SAY_BYE, 0, 0);
            try {
                mServiceMessenger.send(msg);
            } catch (RemoteException e) {
                e.printStackTrace();
            }

        } else {
            Toast.makeText(this, "not bound yet", Toast.LENGTH_SHORT);
        }
    }

    @Override
    protected void onStart() {
        super.onStart();
        Toast.makeText(this, "binding", Toast.LENGTH_SHORT);
        bindService(new Intent(this, MessengerService.class), mServiceConnection,
                Context.BIND_AUTO_CREATE);
    }

    protected void onStop() {
        super.onStop();
        unbindService(mServiceConnection);
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_my);
        Button hi = (Button)findViewById(R.id.hello_world);
        Button bye = (Button)findViewById(R.id.bye_world);
        hi.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                sayHello();
            }
        });
        bye.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                sayBye();
            }
        });
    }

}
4

3 回答 3

2

您忘记调用show()方法试试这个代码片段。

Toast.makeText(getApplicationContext(), "hello!", Toast.LENGTH_SHORT).show()
于 2014-09-18T13:46:06.190 回答
2

据我所知,您没有调用 show 方法。尝试像这样更改代码:

Toast.makeText(this, "not bound yet", Toast.LENGTH_SHORT).show();
于 2014-09-18T13:46:33.063 回答
0

您忘记在 Toast 链的末尾调用“.show()”方法:

Toast.makeText(this, "not bound yet", Toast.LENGTH_SHORT).show();
于 2018-11-10T21:48:19.643 回答