Java tutorial
/** * Copyright (C) 2013-2014 EaseMob Technologies. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aidigame.hisun.imengstar.huanxin; import android.app.Notification; import android.app.NotificationManager; import android.content.Context; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.text.Spannable; import android.view.View; import android.widget.TextView.BufferType; import com.easemob.chat.EMChatManager; import com.easemob.chat.EMGroupManager; import com.easemob.chat.EMMessage; import com.easemob.chat.NotificationCompat; import com.easemob.chat.EMMessage.Type; import com.easemob.exceptions.EaseMobException; import com.easemob.util.EasyUtils; public class BaseActivity extends FragmentActivity { private static final int notifiId = 11; protected NotificationManager notificationManager; @Override protected void onCreate(Bundle arg0) { super.onCreate(arg0); notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); } @Override protected void onResume() { super.onResume(); // onresume?notification EMChatManager.getInstance().activityResumed(); } @Override protected void onStart() { super.onStart(); } /** * ??????????? * ???? * @param message */ protected void notifyNewMessage(EMMessage message) { //????(app??demo??) //?setShowNotificationInbackgroup:false(false???sdk??) if (!EasyUtils.isAppRunningForeground(this)) { return; } NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this) .setSmallIcon(getApplicationInfo().icon).setWhen(System.currentTimeMillis()).setAutoCancel(true); String ticker = CommonUtils.getMessageDigest(message, this); if (message.getType() == Type.TXT) ticker = ticker.replaceAll("\\[.{2,3}\\]", "[]"); //???? try { mBuilder.setTicker(message.getStringAttribute("nickName") + ": " + ticker); } catch (EaseMobException e) { // TODO Auto-generated catch block e.printStackTrace(); } Notification notification = mBuilder.build(); notificationManager.notify(notifiId, notification); notificationManager.cancel(notifiId); } /** * * * @param view */ public void back(View view) { finish(); } }