摘要: 代码如下:Intent intent = new Intent();intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setAction(android.content.Intent.ACTION_VIEW);intent.setDataAndType(Uri.fromFile(new File(filePath)), type);context.startActivity(intent);异常信息提示如下:03-20 16:46:48.760: E/AndroidRuntime(30325): android.content.Acti 阅读全文
posted @ 2014-03-20 17:01 BaronZ 阅读(5144) 评论(0) 推荐(0) 编辑