How Can I Use External Storage In Android
This is for the first time i am using external storage in android. I need some help how can i perform different operations such as how to check whether External Storage is availabl
Solution 1:
To clarify the first part of CommonsWare's answer (I couldn't seem to add a comment to the comment stream): you want to check that...
Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED);
... is true.
Post a Comment for "How Can I Use External Storage In Android"