I've an app that periodically show same toasts also when app goes to background. So when I use other app I see toasts of my app. How allow show toasts only in my activities?
Toast.makeText(getApplicationContext(), "level",
Toast.LENGTH_LONG).show();
I've an app that periodically show same toasts also when app goes to background. So when I use other app I see toasts of my app. How allow show toasts only in my activities?
Toast.makeText(getApplicationContext(), "level",
Toast.LENGTH_LONG).show();
トーストがコンテキストから外れて表示される問題に正確に対処するクルトンライブラリを見ることができます。
ここでは、説明とダウンロード先を見つけることができます。
アクティビティが表示されている場合にのみ、Toast を表示するように指示することはできません。アプリがバックグラウンドで実行されているときは、むしろ show() 関数を呼び出さないようにする必要があります。