Android模拟器不显示存储的图像

时间:2016-02-04 18:09:08

标签: java android xml android-emulator android-camera2

我正在开展一个旨在将智能手机变成显微镜的项目(图像处理也很少);我决定在Android Studio中为Android手机构建我的程序。

在线查看我发现了一些关于如何访问相机,捕获图像并将其存储在内存中的教程。出于某种原因,用于运行程序的模拟器显示的只是捕获图像,而不是将其存储在内存中。他们是模拟器的问题吗?如何将此程序转移到我的Android Google Nexus 5手机上?

这里有一些XML代码:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.user.smartphonemicroscope">
<uses-feature android:name="android.hardware.camera2"></uses-feature> <!-- Acess camera2 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".Microscope">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
</manifest>

这里有一些Java:

package com.example.user.smartphonemicroscope;
import android.app.Activity;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.net.Uri;
import android.preference.PreferenceManager;
import android.provider.MediaStore;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.hardware.camera2.CameraDevice;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import java.io.File;

public class Microscope extends Activity {
Button button;
ImageView imageView;
static final int CAM_REQUEST = 1;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_microscope);
    button = (Button) findViewById(R.id.button);
    imageView = (ImageView) findViewById(R.id.image_view);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent camera_intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
            File file = getFile();
            camera_intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
            startActivityForResult(camera_intent, CAM_REQUEST);
        }
    });
}

private File getFile() {

    File folder = new File("sdcard/camera_app");

    if(!folder.exists())
    {
        folder.mkdir();
    }

    File image_file = new File(folder,"cam_image.jpg");

    return image_file;
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    String path = "sdcard/camera_app/cam_image.jpg";
    imageView.setImageDrawable(Drawable.createFromPath(path));
  }
}

我还有一些关于它在界面中的样子的图像。

Emulator Camera Accessed, after pressing capture button
Image Captured, but will not save

1 个答案:

答案 0 :(得分:1)

File folder = new File("sdcard/camera_app");

这个值在15亿台Android设备上是错误的。

更一般地说,永远不会硬编码路径。始终使用某种方法来派生要写入的根位置。您似乎希望写信至external storage。在这种情况下,请使用getExternalFilesDir()Context)上的方法或Environment上的方法来获取要写入的根位置。