我有一个应用程序来捕获将在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>
活动 - &GT;&GT;
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;
}
}
答案 0 :(得分: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);
OnActivityResult:
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;
}
}
}
答案 1 :(得分: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" />
答案 2 :(得分:0)
对于那些仍在寻找此问题解决方案的人:
缺乏许可是这个问题背后的主要原因之一。 请在清单文件中添加此权限。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />