Showing posts with label SD Card. Show all posts
Showing posts with label SD Card. Show all posts

Saturday, 6 April 2013

Android Devices-How to make sure the SD card is present?



Sometimes you want to make sure the hardware is there... .

if (android.os.Environment.getExternalStorageState().equals(
android.os.Environment.MEDIA_MOUNTED)){

// SD Card is present 

}else{
// SD card not present 
}

Disqus for Android