如何导航并恢复我的应用程序而不挂起它?

时间:2016-04-04 00:07:26

标签: java android surfaceview game-loop

当我在下面运行我的代码时,一切正常。当我想回到之前的活动(使用模拟器)时,我得到一个黑屏,然后应用程序关闭。当我退出应用程序并尝试恢复它时,我也会出现黑屏。

代码:

package com.example.bono.as3;

import android.app.Activity;
import android.content.Context;
import android.content.res.AssetManager;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.os.Bundle;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import java.io.IOException;
import java.io.InputStream;

public class Main extends Activity {

    DrawView drawView;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        drawView = new DrawView(this);
        setContentView(drawView);
    }

    @Override public void onResume(){
        super.onResume();
        drawView.resume();
    }

    @Override public void onPause(){
        super.onPause();
        drawView.pause();
    }

    public class DrawView extends SurfaceView implements Runnable{

        Thread gameloop = new Thread();
        SurfaceHolder surface;
        volatile boolean running = false;
        AssetManager assets = null;
        BitmapFactory.Options options = null;
        Bitmap incect[];
        int frame = 0;

        public DrawView(Context context){
            super(context);
            surface = getHolder();
            assets = context.getAssets();
            options = new BitmapFactory.Options();
            options.inPreferredConfig = Bitmap.Config.ARGB_8888;

            incect = new Bitmap[2];

            try {
                for (int n = 0; n < incect.length; n++){
                    String filename = "incect"+Integer.toString(n+1)+".png";
                    InputStream istream = assets.open(filename);
                    incect[n] = BitmapFactory.decodeStream(istream,null,options);
                    istream.close();
                }
            } catch (IOException e){
                e.printStackTrace();
            }
        }

        public void resume(){
            running = true;
            gameloop = new Thread(this);
            gameloop.start();
        }

        public void pause(){
            running = false;
            while (true){
                try {
                    gameloop.join();
                }
                catch (InterruptedException e){}
            }
        }

        @Override public void run (){
            while (running){
                if (!surface.getSurface().isValid())
                    continue;
                Canvas canvas = surface.lockCanvas();
                canvas.drawColor(Color.rgb(85, 107, 47));
                canvas.drawBitmap(incect[frame], 0, 0, null);

                surface.unlockCanvasAndPost(canvas);

                frame++;

                if (frame > 1) frame = 0;

                try {
                    Thread.sleep(500);
                } catch (InterruptedException e){
                    e.printStackTrace();
                }
            }
        }
    }
}

我在日志中没有收到任何错误消息,我得到的是大约13条消息说&#34;暂停所有线程:X ms&#34;所以它与我的gameloop Thread有关。不幸的是,我不知道我的代码中存在什么问题...

2 个答案:

答案 0 :(得分:1)

这是我用来导航回来的。也许这对你有用2!

Button backpressed = (Button) findViewById(R.id.btBack);
    backpressed.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            onBackPressed();
        }
    });

onBackPressed()只是一个方法,如果你想返回到最后一页,你可以调用它。

对我来说是什么样的:

Backbutton

答案 1 :(得分:1)

如果您需要上下文,请使用getApplicationContext()或Activity.this。 (我的代码似乎没有错误)

回到以前使用的活动时,onCreate()不会被调用,只有onResume(),所以如果你将以下行移到那里它可能会有所帮助。     drawView = new DrawView(this);     的setContentView(drawView函数);

  • 为什么要使用内心课?活动已经是一个类。如果您想多次使用该代码,请将其单独创建为一个类。