You should be able to open DICOM files, like any other registered MIME type, with intent. I will not depend on the “Droid Dicom Viewer” to browse your files, as it fails more often than it does.
(assuming sDICOMFile is a string containing the path to the file)
final Intent dicom_intent = new Intent(android.content.Intent.ACTION_VIEW);
dicom_intent.setDataAndType(Uri.parse("file://" + sDICOMFile), "Application/dicom");
startActivity(dicom_intent);