首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

展示word文档

2012-09-10 
显示word文档String filePath /sdcard/sym.docLog.e(MULpath, path)intent.addFlags(Intent.FLAG_A

显示word文档
String filePath = "/sdcard/sym.doc"
                             Log.e("MULpath", path);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
       intent.setAction(android.content.Intent.ACTION_VIEW);
    intent.setDataAndType(Uri.parse("file://" + filePath),   "application/msword");
         startActivity(intent);

热点排行