Android how to open a .doc extension file?

前端 未结 6 2080
借酒劲吻你
借酒劲吻你 2020-11-28 13:57

Is there any possible way to open a .doc extension file?

6条回答
  •  爱一瞬间的悲伤
    2020-11-28 14:25

    Open Document from List of avaliable application User have to choose application from list of application

    File targetFile = new File(path);
                        Uri targetUri = Uri.fromFile(targetFile);
                        Intent intent = new Intent(Intent.ACTION_VIEW);
                        intent.setDataAndType(targetUri, "application/*");
                        startActivityForResult(intent, DOC);
    

提交回复
热议问题