我正在使用messenger关注绑定服务的android指南示例并运行以下代码片段。 我已经稍微修改了片段,以便有一个hi和bye按钮,服务应该显示toast hi或bye,具体取决于在UI上按下哪个按钮。
但是在运行示例toast时不会显示。虽然收到的消息日志打印在UI上。
这是什么原因。在ActStity onStart上的祝酒也没有显示出来。
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();
}
});
}
}
答案 0 :(得分:2)
您忘记拨打show()
方法
试试这段代码。
Toast.makeText(getApplicationContext(), "hello!", Toast.LENGTH_SHORT).show()
答案 1 :(得分:2)
据我所知,你不打电话给show方法。尝试更改代码:
Toast.makeText(this, "not bound yet", Toast.LENGTH_SHORT).show();
答案 2 :(得分:0)
您忘记在Toast链的末尾调用“ .show()”方法:
Toast.makeText(this, "not bound yet", Toast.LENGTH_SHORT).show();