我的android应用程序不适用于活动生命周期

时间:2017-11-24 03:15:03

标签: java android activity-lifecycle android-studio-3.0 flashlight

我正在制作处理活动生命周期的手电筒应用程序。应用程序运行正常,但是当我调用onStop()时会出现问题;当手电筒打开时,当我从onStop();返回时,应用程序应该打开闪光灯,但它没有。 我已经尝试了所有的方法,但flashOn();没有启用手电筒。我从调试中检查过,如果从onStop();

返回后手电筒处于打开状态,应用程序什么都不做
public class MainActivity extends AppCompatActivity {

private ImageButton imagebtn;
ImageView img;

private Camera camera;
private boolean isFlashOn;
private boolean hasFlash = false;
private Camera.Parameters params;

private boolean flag= false;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    imagebtn = (ImageButton) findViewById(R.id.button);
    img = findViewById(R.id.torchimage);

    isFlashOn = false;
    hasFlash = getApplicationContext().getPackageManager()
            .hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH);

    if (!hasFlash) {
        // If device doesn't support flash
        // Show alert message and close the application
        AlertDialog alert = new AlertDialog.Builder(MainActivity.this)
                .create();
        alert.setTitle("Error");
        alert.setMessage("Sorry, your device doesn't support flash light!");
        alert.setButton("OK", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {

                finish();//Close application
            }
        });
        alert.show();
    }


    imagebtn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            if (isFlashOn) {

                flashOff();
            } else {

                flashOn();
            }
        }
    });
}


protected void checkCamera() {
    if (camera == null) {
        try {
            camera = Camera.open();
            params = camera.getParameters();
        } catch (RuntimeException e) {
            Toast.makeText(getApplicationContext(), "Camera not found", Toast.LENGTH_SHORT).show();
        }
    }
}


**protected void flashOn() {
    if (!isFlashOn) {


       {
                if (camera == null || params == null) {
                    return;
                }

            /*if (flag==true) {
flag=false;
                params = camera.getParameters();
                params.setFlashMode(Parameters.FLASH_MODE_TORCH);
                camera.setParameters(params);
                camera.startPreview();
            */}

        params = camera.getParameters();
        params.setFlashMode(Parameters.FLASH_MODE_TORCH);
        camera.setParameters(params);
        camera.startPreview();
        isFlashOn = true;
        toggleImages();
        btnSound();
    }
}**

protected void flashOff() {
    if (isFlashOn)
        {
        if (camera == null || params == null) {
            return;
        }

        params = camera.getParameters();
        params.setFlashMode(Parameters.FLASH_MODE_OFF);
        camera.setParameters(params);
        camera.stopPreview();

        isFlashOn = false;
            toggleImages();
        btnSound();

    }
}

protected void btnSound() {
    final MediaPlayer mp = MediaPlayer.create(this, R.raw.button_sound);
    mp.start();
}

public void toggleImages() {
    if (isFlashOn) {
        imagebtn.setImageResource(R.drawable.button_on);
        img.setImageResource(R.drawable.torch_on);
    } else {
        imagebtn.setImageResource(R.drawable.button_off);
        img.setImageResource(R.drawable.torch_off);
    }
}

@Override


 protected void onDestroy() {
      //  Toast.makeText(this,"OnDestroy",Toast.LENGTH_SHORT).show();
        super.onDestroy();
    }

    @Override
    protected void onPause() {
        super.onPause();
        if (isFlashOn)
            flashOn();
        else
            flashOff();

    }

    @Override
   protected void onRestart(){    super.onRestart();

            if (isFlashOn==true)
                flashOn();
            else
                flashOff();

    }

@Override
protected void onResume() {
    super.onResume();
        if (isFlashOn == true)
            flashOn();
        else
            flashOff();
}

@Override
protected void onStart() {
    super.onStart();
  // Toast.makeText(this,"OnStart",Toast.LENGTH_SHORT).show();

//  if (hasFlash)
      checkCamera();


}


@Override
protected void onStop() {
//    Toast.makeText(this, "OnStop", Toast.LENGTH_SHORT).show();
    super.onStop();
    if (camera != null) {
        camera.release();
       camera = null;
       flag= true;

    }

}

1 个答案:

答案 0 :(得分:0)

请再次查看Android生命周期https://developer.android.com/guide/components/activities/activity-lifecycle.html

它继续停止 - > onRestart - > onStart - >的onResume

你在整个地方散布着大量的垃圾,这使得应该很容易看到,相当困难。

所以......闪光灯开启,即isFlashOn = true;

从你的if中删除boolean == true。只是如果(布尔)有效并且更好。

onStop ... camera = null; flag = true;

但isFlashOn仍然是真的

返回活动......

onRestart ... if(isFlashOn == true)flashOn(); < ---它是,所以去flashOn()

flashOn(){     if(!isFlashOn){< -------------没有布尔值仍然是真的所以这不是运行...无论如何,相机都是空的。

onStart ... checkCamera(){     if(camera == null){< ------ Yes,OK

onResume ... if(isFlashOn == true)< -----同样的问题,所以相机永远不会启动。

在onStop中设置isFlashOn = false

同样从恢复或重新启动中移除代码......它只是重复并经历了两次相同的事情。

希望这会教你如何更好地调试。从中学习。