由于onStop()强制关闭

时间:2010-07-16 20:31:44

标签: java android

我终于完成了我的应用程序中的所有操作,但现在每当我使用除Home按钮之外的任何内容退出时,它会闪烁强制关闭屏幕,然后它会消失。我知道这不是什么大不了的事,但我真的希望它停止发生,我终于得到了一个logcat并且它说没有super.onStop(),所以我补充说,然后它再次强制关闭给我nullPointer,

我正在使用moveTaskToBack(true)关闭应用程序,并且只要我使用它就是它的功能,在我的onDraw方法中给出了一个nullpointer。我不确定需要哪些其他信息,所以请告诉我,提前感谢任何帮助

public void onDraw(Canvas canvas){
        if(checkState == -9){
            canvas.drawColor(Color.BLACK);
            canvas.drawBitmap(bG, 0, 0, paint);
            canvas.drawBitmap(title, display.getWidth()/2 - title.getWidth()/2, 10, paint);
            canvas.drawBitmap(start, display.getWidth()/2 - start.getWidth()/2, 40 + title.getHeight(), paint);
            canvas.drawBitmap(instructions, display.getWidth()/2 - instructions.getWidth()/2, 80 + title.getHeight() + start.getHeight(), paint);
            canvas.drawBitmap(exit, display.getWidth()/2 - exit.getWidth()/2, 120 + title.getHeight() + start.getHeight() + exit.getHeight(), paint);
            canvas.drawBitmap(highScore, 0, display.getHeight() - highScore.getHeight(), paint);
            String high = highLevel + "";
            for(int i = 0; i < high.length(); i++){
                levelOnMenu = high.charAt(i) + "";
                levelPiece = Integer.parseInt(levelOnMenu);
                int placeX = highScore.getWidth() + levelNumber.getWidth()/2 ;
                if(high.length() == 1){

                }
                else if(high.length() == 2){
                    if(i == 0){

                    }
                    else{
                        placeX = placeX + levelNumber.getWidth();
                    }
                }

它告诉我onDraw的第一部分是null,drawColor ...这对我来说没什么意义

这是我使用moveTaskToBack()

的地方
if(checkState == -11){
            if(event.getAction() == MotionEvent.ACTION_UP){
                if(x >= display.getWidth()/2 - pauseMenu.getWidth()/2 && x <= display.getWidth()/2 + pauseMenu.getWidth()/2 && y >=  display.getHeight()/2 - pauseMenu.getHeight()/2 && y <=  display.getHeight()/2 - pauseMenu.getHeight()/2 + pauseMenu.getHeight()/3){
                    checkState = previousState;
                }
                if(x >= display.getWidth()/2 - pauseMenu.getWidth()/2 && x <= display.getWidth()/2 + pauseMenu.getWidth()/2 && y >=  display.getHeight()/2 - pauseMenu.getHeight()/2 + pauseMenu.getHeight()/3 && y <=  display.getHeight()/2 - pauseMenu.getHeight()/2 + 2*(pauseMenu.getHeight()/3)){
                    if(sound){
                        sound = false;
                    }
                    else{
                        sound = true;
                    }
                }
                if(x >= display.getWidth()/2 - pauseMenu.getWidth()/2 && x <= display.getWidth()/2 + pauseMenu.getWidth()/2 && y >=  display.getHeight()/2 - pauseMenu.getHeight()/2 + 2*(pauseMenu.getHeight()/3) && y <=  display.getHeight()/2 - pauseMenu.getHeight()/2 + pauseMenu.getHeight()){

                    moveTaskToBack(true);
                }

            }
        }

1 个答案:

答案 0 :(得分:0)

你不应该使用Activity.finish()函数关闭你的应用程序吗?