0

最初に、ユーザーがフォルダーを作成して名前を付けることができる主なものを作成し、ボタンを押すとカメラの次の場所に移動します。フォルダが作成された後、画像は dall'intent のパスに保存できません。私は完全に混乱しており、私の英語についてお詫び申し上げます

        final String direct = this.getIntent().getStringExtra("key");
public static final int MEDIA_TYPE_IMAGE = 1;

/** Create a file Uri for saving an image or video */

Uri uriSavedImage=Uri.fromFile(new File( direct   + "photo.jpg"));

final Uri getOutputMediaFileUri(int type){
      return Uri.fromFile(getOutputMediaFile(type));
}

/** Create a File for saving an image or video */
final  File getOutputMediaFile(int type){
    // To be safe, you should check that the SDCard is mounted
    // using Environment.getExternalStorageState() before doing this.

    File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(
              Environment.DIRECTORY_PICTURES ), "direct" );
    // This location works best if you want the created images to be shared
    // between applications and persist after your app has been uninstalled.

    // Create the storage directory if it does not exist
    if (! mediaStorageDir.exists()){
        if (! mediaStorageDir.mkdirs()){
            Log.d("MyCameraApp", "failed to create directory");
            return null;
        }
    }

    // Create a media file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
    File mediaFile;

    if (type == MEDIA_TYPE_IMAGE){
        mediaFile = new File(mediaStorageDir.getPath() + File.separator +
        "IMG_"+ timeStamp + ".jpg");
    }  else {
        return null;
    }

    return mediaFile;
}

}

メインはこれ

public class MainActivity extends Activity {

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


    Button b = (Button) findViewById(R.id.button1);
    b.setOnClickListener(new OnClickListener() {


        EditText text = (EditText)findViewById(R.id.editText1); 
        EditText text2 = (EditText)findViewById(R.id.editText2);
        EditText text3 = (EditText)findViewById(R.id.editText3);



        @Override



        public void onClick(View v) {



            final String name = text.getText().toString();
            final String placeName = text2.getText().toString(); 
            final String dettaglio =text3.getText().toString();



            String place = placeName.substring(0,3);
            String direct = name + place + dettaglio ;

            File folder = new File("/sdcard/CameraTest/" + direct + "/");
            folder.mkdirs();



            Intent myIntent = new Intent(MainActivity.this, CameraView.class);
            myIntent.putExtra("key", "/sdcard/CameraTest/" + direct + "/");
            startActivity(myIntent);



        }
    });

}

}

4

1 に答える 1