我正在开发一个 android 项目,并试图找到一种改进以下代码的方法。我需要知道我开发的方式是否可以:
- 通知是从数据库中检索的 GCM 通知
我的问题是关于我多次调用的意图服务。可以吗?应该如何改善这一点?
while (((notification)) != null)
{{
message = notification.getNotificationMessage();
//tokenize message
if ( /*message 1*/) {
Intent intent1= new Intent(getApplicationContext(),A.class);
intent1.putExtra("message1",true);
startService(intent1);
} else
{
Intent intent2= new Intent(getApplicationContext(),A.class);
intent2.putExtra("message2",true);
startService(intent2);
}
}
//retrieve next notification and delete the current one
}