0
我從當前的活動開始新的活動:在android上開始新的活動不會暫停當前活動?
public synchronized boolean onTouchEvent(MotionEvent event) { if (event.getAction() == MotionEvent.ACTION_DOWN) { ..... Intent myIntent = new Intent(MainActivity, DetailsActivity.class); MainActivity.startActivity(myIntent); .......
,並在當前(舊)的活動我有循環:
while (running) { this.gamePanel.update(); this.gamePanel.render(canvas); }
啓動n新活動電流後活動仍在運行? 我在這個循環從內部有錯誤:
this.gamePanel.render(canvas);
如何在開始新活動後暫停當前活動?
的其他活動即將回你必須結束while循環 – Blackbelt 2014-09-28 14:19:31
集'運行= FALSE'在活動 – 2014-09-28 14:24:52
的的onPause但是當我SART新的活動,我不知道,循環運行的地方。它只是在渲染之前。 – 2014-09-28 14:27:41