javaMe解决来电问题
来源:技术人生 责任编辑:栏目编辑 发表时间:2013-07-02 03:11 点击:次
解决来电问题,唯一需要做的就是重载Canvas的hideNotify()方法。
just like this:
boolean gameIsPaused;
protected void showNotify() { gameIsPaused = false;
}
protected void hideNotify() {
gameIsPaused = true;
}
private void theMainGameLoop() {
while (gameIsRunning) {
if (!gameIsPaused) {
// process events and update the screen
}
}
}
protected void showNotify() { gameIsPaused = false;
}
protected void hideNotify() {
gameIsPaused = true;
}
private void theMainGameLoop() {
while (gameIsRunning) {
if (!gameIsPaused) {
// process events and update the screen
}
}
}
本文出自 “技术人生” 博客,请务必保留此出处http://zhaohaiyang.blog.51cto.com/2056753/432991
相关新闻>>
- 发表评论
-
- 最新评论 更多>>