我有一个应用程序来捕捉将显示在 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;
}
}