Please tell me:

  1. How to save the camera image into "sharedpreferences"?

  2. After opening the camera and take picture, When I return back to the previous activity, I found the screen is displayed horizontally and it does not return back to it's actual orientation. How can I fix this problem?

Regards

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can not save binary data into SharedPreferences. You could serialize your image into a string value and store it into SharedPreferences but this is not what preferences are intended for.

You will be better off saving the image into the database.

As for the screen orientation take a look at this question: How to make application completely ignore screen orientation change in Android?

link|improve this answer
Google and StackOverflow ;) ... like this one: stackoverflow.com/questions/4336865/… – Drejc Feb 16 at 9:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.