1

我有一个应用程序来捕捉将显示在 ImageView 上的照片(并在内部做更多的工作)。

问题就在这里,当我打开相机并拍摄照片后,保存和丢弃选项来了,点击保存按钮后它再次进入相机模式。

清理手机内存时不会出现此问题(任务管理器->> Ram->>清除内存)。

我的问题是:当内存不足时,Camera Intent 不会给出结果。但是当我打开普通相机时,它会捕捉照片。

我如何解决这个问题。每次在启动我的应用程序之前清理内存时,这里都有一个解决方案。

但这不是正确的方法,因为当我向普通人介绍我的应用程序时,他们不会做这些事情。

现在我需要在这里做什么?

有什么方法可以通过我的应用程序清理内存?我如何知道我的应用程序使用的最小或最大内存是多少。所以首先我的应用程序检查,是否有那么多可用的内存。如果可用,则继续,否则告诉用户清理(或卸载某些应用程序)一些内存。

我在我的应用程序中使用以下代码:

布局->

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<Button 
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:text="@string/photo"
    />

<ImageView 
    android:id="@+id/image"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@id/button1"
    android:contentDescription="@string/image"/>
</RelativeLayout>

活动->>

public class TestCameraActivity extends Activity {

private Button button;
private ImageView imageView;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_test_camera);

    button = (Button) findViewById(R.id.button1);
    imageView = (ImageView) findViewById(R.id.image);

    button.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
            startActivityForResult(intent, 100);
        }
    });
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == 100) {
        Bitmap bitmap = (Bitmap) data.getExtras().get("data");
        imageView.setImageBitmap(bitmap);
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_test_camera, menu);
    return true;
}

}
4

3 回答 3

3

您的代码正在寻找任何方式尝试下面对我有用的代码

File root = new File(Environment.getExternalStorageDirectory(), "Directory");
        if (!root.exists()) {
            root.mkdirs();
        }
         File file = new File(root,"filename.jpeg" );
         outputFileUri = Uri.fromFile( file );

         Intent photoPickerIntent= new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    photoPickerIntent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
    photoPickerIntent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
    photoPickerIntent.putExtra("return-data", true);
   startActivityForResult(photoPickerIntent,100);

活动结果:

protected void onActivityResult(int requestCode, int resultCode, Intent data) 
{   

    switch(requestCode)
     { 

     case 100:
     if(resultCode == RESULT_OK)
     { 

           if(data==null)
            {
               Bitmap bitmap = (Bitmap) data.getExtras().get("data");
                         imageView.setImageBitmap(bitmap);
            }
         break;
     }
}
}
于 2012-11-16T07:18:33.617 回答
2

可能是您没有正确调用CameraIntent,请尝试以下代码,希望它有效:

CameraIntent

String filepath = Environment.getExternalStorageDirectory()+"/foldername/"+filename;
System.out.println("thumbnail path~~~~~~"+filepath);
File file = new File(filepath);
Uri outputFileUri = Uri.fromFile(file);

Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
startActivityForResult(intent, 100);

onActivityResult

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == 100) {
        sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));
        Bitmap bitmap;
        bitmap=GlobalMethods.decodeFile(_path);//function to decode.
        if (bitmap == null) {
            ivPhy.setImageBitmap(bitmap);
        } 
        else {
            ivPhy.setImageBitmap(bitmap);
            ivPhy.setScaleType(ScaleType.FIT_XY);
        }
    }


}

Manifest Permission

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
于 2012-11-22T05:11:07.253 回答
0

对于仍在寻找此问题的解决方案的人:

缺乏许可是这个问题背后的主要原因之一。请在您的清单文件中添加此权限。

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
于 2014-09-16T19:48:28.983 回答