我想在来电状态下显示多个 toast 但是当我摘机状态时它显示 toast 但在空闲状态下不显示 toast 我有使用线程和异步任务但问题是相同的它没有显示错误所以我什么都没有我的日志猫。目前我正在使用下面的方法来显示吐司。
handler.post(new Runnable() {
public void run() {
Toast.makeText(getApplicationContext(), "import started", Toast.LENGTH_SHORT).show();
Log.d("TAG", "Recording Toast stop");
}
});
注意:当通话结束并且代码正在服务上运行时,我必须在主屏幕上显示 toast。