The following method returns true if your device is mounted with the SD card else returns false:
public static boolean isSdCardPresent() {
return android.os.Environment.getExternalStorageState().equals(
android.os.Environment.MEDIA_MOUNTED);
}
No comments:
Post a Comment