我的游戏需要很长时间才能从后台加载。在加载期间,屏幕是黑色的(大约 5-7 秒,所以用户可能会认为它崩溃了)。
我决定在进入前台时显示祝酒词。
protected void onResume() {
System.out.println("onResume method called");
Context context = getBaseContext();
// Context context = getApplicationContext();
CharSequence text = "i appreciate your patience";
Toast toast = Toast.makeText(context, text, Toast.LENGTH_LONG);
toast.show();
super.onResume();
wl.acquire();
if (accelerometerEnabled) {
accelerometer.enable();
}
}
但是吐司只有在它完成恢复后才会出现(这使得它无用)我已经尝试过 getApplicationContext、getBaseContext 以及 Activity 本身。那么是否可以在没有我的应用程序上下文的情况下直接在窗口上添加吐司?(可能在系统级上下文中)