设置回调Intent
case SNSParam.NEWS_TYPE_INFO_CHAT://个人聊天
Intent chatIntent = new Intent(context, FriendMainTab.class);
chatIntent.putExtra(FriendMainTab.EXTRA_INDEX,FriendMainTab.TAB_CONVER);
StringBuffer chatBuffer = new StringBuffer();
chatBuffer.append(msg.getFromUser()).append(":").append(contentString);
showNotification(msg, context, chatBuffer.toString(),chatIntent, MOOD_SELF);
break;
case SNSParam.NEWS_TYPE_CIRCLE_CHAT://圈子
Intent circlemsg = new Intent(context, CricleMessgeActivity.class);
circlemsg.putExtra(MeettingMsgActivity.userids, msg.getFromId());
circlemsg.putExtra(MeettingMsgActivity.userNames, msg.getCircleName());
circlemsg.putExtra(MeettingMsgActivity.ISACTION, false);
StringBuffer circleBuffer = new StringBuffer();
circleBuffer.append(msg.getCircleName()).append(":").append(contentString);
showNotification(msg, context, circleBuffer.toString(), circlemsg,MOOD_SELF);
break;
/**
* 弹出通知