如何将数据从当前发送到在特定时间运行Activity
的后台类?Service
我试图进入Intent.putExtras()
,但我没有在Service
课堂上得到它
类Activity
中调用Service
.
Intent mServiceIntent = new Intent(this, SchedulerEventService.class);
mServiceIntent.putExtra("test", "Daily");
startService(mServiceIntent);
课堂上的代码Service
。我很想输入onBind()
and onStartCommand()
。这些方法都没有打印值。
@Override
public IBinder onBind(Intent intent) {
//Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();
//String data = intent.getDataString();
Toast.makeText(this, "Starting..", Toast.LENGTH_SHORT).show();
Log.d(APP_TAG,intent.getExtras().getString("test"));
return null;
}