Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的游戏中使用 Andengine。我面临的问题是,当我的应用程序进入后台时,屏幕会在恢复时显示为空白。当我包含时会发生这种情况
@Override public void onGameCreated() { this.mEngine.enableVibrator(this); }
在 BaseGameActivity 扩展类中。请帮忙。
想通了,或者我认为。我没有在 onGameCreated() 中初始化振动器,而是在 Resume() 中进行了初始化,并且它可以工作。
@Override protected synchronized void onResume() { this.mEngine.enableVibrator(this); super.onResume(); }