这是一个谷歌聊天应用程序。当我收到来自 Google Chat 的消息时,我想在活动处于后台时将其作为通知显示在状态栏中。
我尝试在方法中设置布尔值,onPause()
但它不起作用。
public void addMessage(String chatid, String msg) {
// I want to the execute this line only when the activity is in background
notify.getCurrentActivity(getApplicationContext(), msg, fromName, chatid);
}
public void getCurrentActivity(Context context, String msg){
showNotification(context, msg, fromName, fromChatID);
}