我正在使用数据包侦听器在我的应用程序(xmpp chat)中实现通知。
直到第一个通知到来时代码工作正常,但是一旦人们点击通知,然后在第一次单击后,(if和else)的代码都用完了。我无法得到解决方案,而且它的奇怪也是两个IF / ELSE代码如何运行 - 在第一次通知点击后。
码
PacketFilter filter = new MessageTypeFilter(Message.Type.chat);
final PacketCollector collector = connection.createPacketCollector(filter);
connection.addPacketListener(new PacketListener() {
public void processPacket(Packet packetChat) {
Message message = (Message) packetChat;
packetChat = collector.nextResult();
if (message.getBody() != null) {
fromName = StringUtils.parseBareAddress(message
.getFrom());
Log.i("XMPPClient", "Got text [" + message.getBody()
+ "] from [" + fromName + "]");
// messages.add(fromName + ":");
mMessageItem = new MessageItemDataClass();
mMessageItem.isSendMessage = false;
mMessageItem.messageText = message.getBody();
messages.add(mMessageItem);
//to add the packet message in the layout only when the user is on the same friend's screen
//for anonymous chat
if(packetChat.getFrom().equalsIgnoreCase(refineFromjId(frienduserID)+"/Smack")){
messages.add(mMessageItem);
}
else{
if(checkPresence=true){
notificationforChat(fromName.substring(0,fromName.indexOf("@"))+":1212 "+message.getBody(),packetChat.getFrom(),0);
}
}
//messages.add(mMessageItem);
// Add the incoming message to the list view
mHandler.post(new Runnable() {
public void run() {
//simply turn around to the last of the screen
mList.setSelection(mList.getCount());
lastIndex = mList.getLastVisiblePosition()+1;
if (mList.getFirstVisiblePosition() > lastIndex || mList.getLastVisiblePosition() <= lastIndex) {
//mList.smoothScrollToPosition(lastIndex);
customAdapter.notifyDataSetChanged();
mList.setSelection(mList.getCount());
dbhHelper.close();
}else{
mList.setSelection(mList.getCount());
customAdapter.notifyDataSetChanged();
dbhHelper.close();
}
}
});
}
}
}, filter);
通知
public void notificationforChat(CharSequence message,String toJid, int notificationID) {
int notificationCount = 1;
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
int icon = R.drawable.ic_launcher;
CharSequence tickerText = message;
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
//notification.number = notificationCount++;
Context context = getApplicationContext();
CharSequence contentTitle = "Chat";
CharSequence contentText = message;
Intent notificationIntentforChat = new Intent(this, UserChatActivity.class);
notificationIntentforChat.putExtra("userNameVal", toJid);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
notificationIntentforChat, PendingIntent.FLAG_UPDATE_CURRENT);
notification.setLatestEventInfo(context, contentTitle, contentText,
contentIntent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.defaults = Notification.DEFAULT_ALL;
mNotificationManager.notify(notificationID, notification);
}
如果有人可以帮助我! 感谢
答案 0 :(得分:1)
您的功能可能会在不同情况下同时被调用多次(可能是两次)...所以您会感觉到if和else被调用了。尝试使用标志来限制执行代码块的次数,或者设置计数器以检查代码块是否多次执行。制作您计划用作静态的计数器或标志变量,以便您可以在不知不觉中创建可能正在创建的不同实例的调用。