简体   繁体   English

在 Android Oreo 中调用相机意图后,父活动正在重新创建

[英]Parent Activity is recreating after calling Camera intent in Android Oreo

I am using Media intent capturing image.我正在使用媒体意图捕获图像。 Once process completed result will be send back to parent.处理完成后,结果将发送回父级。 Above mentioned process working properly up to Nougat Os but in Oreo the parent activity is recreating again.上述过程在 Nougat Os 之前正常工作,但在 Oreo 中,父活动再次重新创建。 How can i solve this issue.我该如何解决这个问题。

Above mentioned process working properly up to Nougat Os but in Oreo the parent activity is recreating again上述过程在 Nougat Os 之前正常工作,但在 Oreo 中,父活动再次重新创建

Your process is being terminated while the camera app is in the foreground.当相机应用程序在前台时,您的进程正在终止。 This is perfectly normal and has nothing to do with Android 8.0.这是完全正常的,与 Android 8.0 无关。 It has everything to do with the available system RAM and what is all going on in the device at the time.它与可用的系统 RAM 以及当时设备中发生的一切有关。

How can i solve this issue.我该如何解决这个问题。

There is no issue.没有问题。 Your process can be terminated at any point when you do not have the foreground UI.当您没有前台 UI 时,您的进程可以随时终止。 Your code needs to deal with that.您的代码需要处理这个问题。

For example, if you are using EXTRA_OUTPUT on your ACTION_IMAGE_CAPTURE Intent , you need to remember that value, as you do not get it back in any form of result from the camera app.例如,如果您在ACTION_IMAGE_CAPTURE Intent上使用EXTRA_OUTPUT ,则需要记住该值,因为您不会从相机应用程序以任何形式返回它。 Saving it in the saved instance state Bundle is a typical solution, as I illustrate in this sample app , particularly in this activity:将它保存在已保存的实例状态Bundle是一个典型的解决方案,正如我在此示例应用程序中所说明的,特别是在此活动中:

/***
 Copyright (c) 2008-2017 CommonsWare, LLC
 Licensed under the Apache License, Version 2.0 (the "License"); you may not
 use this file except in compliance with the License. You may obtain a copy
 of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required
 by applicable law or agreed to in writing, software distributed under the
 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
 OF ANY KIND, either express or implied. See the License for the specific
 language governing permissions and limitations under the License.

 Covered in detail in the book _The Busy Coder's Guide to Android Development_
 https://commonsware.com/Android
 */

package com.commonsware.android.camcon;

import android.Manifest;
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.ClipData;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.provider.MediaStore;
import android.support.v4.content.FileProvider;
import android.widget.Toast;
import java.io.File;
import java.util.List;

public class MainActivity extends Activity {
  private static final String EXTRA_FILENAME=
    "com.commonsware.android.camcon.EXTRA_FILENAME";
  private static final String FILENAME="CameraContentDemo.jpeg";
  private static final int CONTENT_REQUEST=1337;
  private static final String AUTHORITY=
    BuildConfig.APPLICATION_ID+".provider";
  private static final String PHOTOS="photos";
  private File output=null;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    if (savedInstanceState==null) {
      output=new File(new File(getFilesDir(), PHOTOS), FILENAME);

      if (output.exists()) {
        output.delete();
      }
      else {
        output.getParentFile().mkdirs();
      }

      Intent i=new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
      Uri outputUri=FileProvider.getUriForFile(this, AUTHORITY, output);

      i.putExtra(MediaStore.EXTRA_OUTPUT, outputUri);

      if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.LOLLIPOP) {
        i.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
      }
      else if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.JELLY_BEAN) {
        ClipData clip=
          ClipData.newUri(getContentResolver(), "A photo", outputUri);

        i.setClipData(clip);
        i.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
      }
      else {
        List<ResolveInfo> resInfoList=
          getPackageManager()
            .queryIntentActivities(i, PackageManager.MATCH_DEFAULT_ONLY);

        for (ResolveInfo resolveInfo : resInfoList) {
          String packageName = resolveInfo.activityInfo.packageName;
          grantUriPermission(packageName, outputUri,
            Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
        }
      }

      try {
        startActivityForResult(i, CONTENT_REQUEST);
      }
      catch (ActivityNotFoundException e) {
        Toast.makeText(this, R.string.msg_no_camera, Toast.LENGTH_LONG).show();
        finish();
      }
    }
    else {
      output=(File)savedInstanceState.getSerializable(EXTRA_FILENAME);
    }
  }

  @Override
  protected void onSaveInstanceState(Bundle outState) {
    super.onSaveInstanceState(outState);

    outState.putSerializable(EXTRA_FILENAME, output);
  }

  @Override
  protected void onActivityResult(int requestCode, int resultCode,
                                  Intent data) {
    if (requestCode == CONTENT_REQUEST) {
      if (resultCode == RESULT_OK) {
        Intent i=new Intent(Intent.ACTION_VIEW);
        Uri outputUri=FileProvider.getUriForFile(this, AUTHORITY, output);

        i.setDataAndType(outputUri, "image/jpeg");
        i.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

        try {
          startActivity(i);
        }
        catch (ActivityNotFoundException e) {
          Toast.makeText(this, R.string.msg_no_viewer, Toast.LENGTH_LONG).show();
        }

        finish();
      }
    }
  }
}

Here, I hold onto the output location in the saved instance state Bundle , so even if my process is terminated, I will get my output back.在这里,我在保存的实例状态Bundle保持output位置,因此即使我的进程终止,我也会恢复我的output

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Android:调用相机意图后活动被破坏 - Android: Activity getting Destroyed after calling Camera Intent Camera Intent没有返回调用Activity - Camera Intent not returning to calling Activity 相机意图后的新活动 - New activity after camera intent 调用相机意图后如何防止Android重启应用程序? - How to prevent Android to restart application after calling camera intent? 为什么摄像机意图无法返回到调用活动? - Why does the camera intent not return to calling Activity? 摄影机意图未返回片段未调用活动结果 - camera intent not returning to fragment not calling on activity result 为什么在android中调用camera时,活动中的所有变量(从Activity1通过intent获得)都被重新初始化? - why while calling camera in android all varibles(got from Activity1 through intent ) in the activity are reinitilized? 用户杀死应用后,Android重新创建活动 - Android recreating activity after user kills the app 在Android的Fragment中调用活动意图 - Calling activity intent in Fragment in Android Android AppCompatDelegate.setDefaultNightMode 不会在 android 9 中重新创建父活动 - Android AppCompatDelegate.setDefaultNightMode not recreating parent activity in android 9
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM