1

アプリを作りたいのですが、特定のボタンを押すと、カムを開いて画像をキャプチャし、キャプチャした後です。

この画像を新しいアクティビティで開き、この画像をこの新しいアクティビティに入れ、1つは削除するボタン、もう1つはタブレットの特定のディレクトリに保存するボタンに加えます。

コードを使用してカムを開きます:

    Open_CAM.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v)  {

            Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); 
           startActivityForResult(cameraIntent, CAMERA_REQUEST);  

その後どうすればいいのかわからない?

助けてください...

4

2 に答える 2

5
Open_CAM.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v)  {
                Intent photoPickerIntent= new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                photoPickerIntent.putExtra(MediaStore.EXTRA_OUTPUT, getTempFile());
                photoPickerIntent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
                photoPickerIntent.putExtra("return-data", true);
                startActivityForResult(photoPickerIntent,TAKE_PICTURE);}}

 private Uri getTempFile() 
 {
      File root = new File(Environment.getExternalStorageDirectory(), "ServiceMySigns");
      if (!root.exists()) 
      {
          root.mkdirs();
      }
     final Calendar c = Calendar.getInstance();
     int y = c.get(Calendar.YEAR);
     int m = c.get(Calendar.MONTH);
     int d = c.get(Calendar.DAY_OF_MONTH);

     int h = c.get(Calendar.HOUR_OF_DAY);
     int mi = c.get(Calendar.MINUTE);

      //String filename=""+y+"-"+"-"+(m+1)+"-"+d+" "+h+":"+mi;
      String filename=""+System.currentTimeMillis();
      File file = new File(root,filename+".jpeg" );
      muri = Uri.fromFile(file);
      selectedImagePath=muri.getPath();
      Log.v("take picture path",selectedImagePath);
      return muri;
  }

  public void onActivityResult(int requestcode,int resultcode ,Intent data)
  {
      switch(requestcode)
      { 
      case TAKE_PICTURE: 
          if(resultcode==RESULT_OK)
          { 
              BitmapFactory.Options o = new BitmapFactory.Options();
              o.inSampleSize=8;
              Bitmap newImage = Bitmap.createScaledBitmap(BitmapFactory.decodeFile(selectedImagePath,o), 
                                                         150, 
                                                         150, 
                                                         false);}}}

onActivityResult でビットマップを取得したら、インテントを通じてそのビットマップを別のアクティビティに送信できます。

于 2012-09-18T10:22:12.513 に答える
2

次のコードは、カメラから写真を撮り、次のアクティビティに画像を設定するのに役立ちます

private void takePicture() {
     cameraIntent = new Intent(
     android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
     startActivityForResult(cameraIntent, IMAGE_CAPTURE);
}

// Receive the result from the start Activity
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        Log.e("onActivityResult", "we r in onActivityResult");

        if (resultCode == Activity.RESULT_OK) {
            switch (requestCode) {

            case IMAGE_CAPTURE:

                File dir = Environment .getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM);
                File output = new File(dir, "camerascript.png");
                cPath = output.getAbsolutePath();
                cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT,
                        Uri.fromFile(output));
                Intent capIntent = new Intent(yourcurrentActivity.this,
                        yournextActivity.class);
                capIntent.putExtra("gallery", cPath);
                startActivity(capIntent);
                break;
            default:
                break;
            }
        }
    }

その後yournextAactivity、キャプチャした画像を設定したい場所に intnet の余分なデータを取得します。

        ImageView imageView = (ImageView)findViewById(R.id.imgView);
    String fileString = getIntent().getStringExtra("gallery");
    imageView.setImageBitmap(BitmapFactory.decodeFile(fileString));
于 2012-09-18T10:54:25.380 に答える