How to check whether SDCARD in mounted in android? By James | March 23, 2012 0 Comment This simple code snippet checks whether SDCARD is mounted in an android device or not. if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) { // SD Card is mounted } else { // SD Card is not mounted }