これは Google チャット アプリケーションです。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);
}