I have implemented this photo taking style. When I preview the photo after I take it, it is beautiful, but when I reload it in the app it looks blurry. Here is the code, does anyone know what I can do to fix it?
private void takePhoto(int actionCode)
{
takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(takePictureIntent, actionCode);
}
protected void onActivityResult(int requestCode, int resultCode, Intent intent)
{
super.onActivityResult(requestCode, resultCode, intent);
Bundle extras = intent.getExtras();
newImageP = (Bitmap) extras.get("data");
newImage.setImageBitmap(newImageP);
}