android中判断sd卡是否准备好 Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);if(isSDPresent){ // 卡已准备}else{ // 卡没准备好}