我正在尝试通过意图向服务发送额外内容,然后该服务打开一个应该接收意图额外内容的活动。当我寻找额外的东西时,在第二个活动中它们似乎是空的,
这是代码片段。
ToDoActivity.java 片段(活动)
public void sendNotification(String title, String body){
Calendar c= Calendar.getInstance(TimeZone.getDefault(), Locale.getDefault());
c.set(mYear, mMonth, mDay, mhour, mminute, 0);
Intent intent = new Intent(this, MyAlarmService.class);
intent.putExtra(TO_DO_ITEM, body);
intent.putExtra(TO_DO_NAME, title);
intent.putExtra(TO_DO_TIME, c.getTimeInMillis());
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
PendingIntent mAlarmSender = PendingIntent.getService(ToDoActivity.this, 0, intent, 0);
AlarmManager alm = (AlarmManager)getSystemService(ALARM_SERVICE);
alm.set(AlarmManager.RTC_WAKEUP, c.getTimeInMillis(), mAlarmSender);
Toast.makeText(this, "Alarm has been set for: " + body, Toast.LENGTH_LONG).show();
}
MyAlarmService.java(服务)
@Override
public int onStartCommand(Intent intent, int flags, int startId){
super.onStartCommand(intent, flags, startId);
Intent alert = new Intent();
try{
alert.putExtras(intent);
}catch(NullPointerException npe){
}
alert.setClass(this, Alert.class);
alert.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(alert);
return START_REDELIVER_INTENT;
}
Alert.java 片段(活动)
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
Builder alert = new AlertDialog.Builder(this);
Intent i = new Intent();
Bundle b = savedInstanceState;
String title="";
String itemToDo="";
long time =0;
try{
title = b.getString(ToDoActivity.TO_DO_NAME);
itemToDo = b.getString(ToDoActivity.TO_DO_ITEM);
time = b.getLong(ToDoActivity.TO_DO_TIME);
}catch (NullPointerException npe){
try{
title = i.getStringExtra(ToDoActivity.TO_DO_NAME);
itemToDo = i.getStringExtra(ToDoActivity.TO_DO_ITEM);
time = i.getLongExtra(ToDoActivity.TO_DO_TIME, System.currentTimeMillis());
}catch(NullPointerException npe2){
}
}
if((!title.equals("") && !itemToDo.equals("") && time !=0))
makeNotif(title, itemToDo, time);
alert.setTitle("Alert: Do the item on your to do list!!");
if(!itemToDo.equals(""))
alert.setMessage(itemToDo);
else
alert.setMessage("There is an item on your To Do List that needs to get done, please check the list and the time");
alert.setPositiveButton("OK", new DialogInterface.OnClickListener(){
@Override
public void onClick(DialogInterface dialog, int which) {
mp.stop();
finish();
}
});
playSound(this, getAlarmUri());
alert.setIcon(R.drawable.ic_launcher);
AlertDialog ad = alert.create();
ad.show();
}
此方法在警报中创建通知(与附加功能有关的另一个问题)这里也没有显示信息(因为我将信息从以前的方法传递到这里)
static final int uniqueid= 139686;
public void makeNotif(String title, String body, long timeInMil){
try{
NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
Intent intent = new Intent(this, ToDoActivity.class);
final String itemToDo=intent.getStringExtra("TDL");
// final String title = b.getString("Name");
final String titleA = intent.getStringExtra("Name");
// final long time = b.getLong("Time");
final long time =intent.getLongExtra("Time",0);
PendingIntent pi = PendingIntent.getActivity(this, 0, intent, 0);
//Notification n = new Notification(0, body, System.currentTimeMillis());
//Notifaction n = Notification
Notification n = new Notification.Builder(this)
.setContentTitle(title)
.setContentText(body)
//.setContentTitle(titleA)
//.setContentText(itemToDo)
.setSmallIcon(R.drawable.ic_launcher)
.setWhen(timeInMil)
.build();
//n.setLatestEventInfo(this, title, body, pi);
n.defaults=Notification.DEFAULT_ALL;
n.flags = Notification.FLAG_AUTO_CANCEL;
nm.notify(uniqueid, n);
}catch(Exception e){
e.printStackTrace();
}
}
如果有人可以告诉我为什么我的临时演员没有被转移,那就太好了。
谢谢,文格