0

私は、スマートフォンを顕微鏡に変えるように設計されたプロジェクトに取り組んでいます(画像処理も少し)。Android携帯用のAndroid Studioでプログラムをビルドすることにしました。

オンラインで見ると、カメラにアクセスし、画像をキャプチャしてメモリに保存する方法に関するチュートリアルがいくつか見つかりました。何らかの理由で、プログラムの実行に使用されるエミュレーターが表示されているのは、画像をキャプチャしているだけで、メモリに保存していません。エミュレータの問題ですか?私が書いているこのプログラムを 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));
  }
}

インターフェイスでどのように見えるかの画像もいくつかあります。

エミュレータ カメラにアクセスし、キャプチャ ボタンを押した後
画像 キャプチャされましたが、保存されません

4

1 に答える 1

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

この値は、約 15 億の Android デバイスでは間違っています。

より一般的には、パスをハードコーディングしないでください。常に何らかの方法を使用して、書き込み先のルートの場所を導き出します。外部ストレージへの書き込みを希望しているようです。その場合、getExternalFilesDir()(on Context) またはメソッド onのようなメソッドを使用Environmentして、書き込み先のルートの場所を取得します。

于 2016-02-04T18:15:45.730 に答える