2012-02-05 62 views

回答

0

您應該可以打開DICOM文件,與任何其他已註冊的MIME類型一樣有意向。我不會依靠「Droid Dicom Viewer」來查看你的文件,因爲它失敗的次數往往比成功的次數多。

(假定sDICOMFile是包含文件路徑的字符串)

final Intent dicom_intent = new Intent(android.content.Intent.ACTION_VIEW); 
dicom_intent.setDataAndType(Uri.parse("file://" + sDICOMFile), "Application/dicom"); 
startActivity(dicom_intent); 
相關問題