QQ微信,其他方式打开文档(doc,docx,ppt,pptx,xls,xlsx,pdf)到自己的App

最近由于项目需求,需要实现的功能大体如下:

借助QQ,微信的文件接收功能,使用户在接收到文件之后可以跳转到我们的App中,进行其他相关的业务.

好了不多说,直接上代码:

1.首先需要在AndroidManifest.xml中声明

     
        
        
            
            
            
        
        
        
            
            
            
        
        
        
            
            
            
        
        
        
            
            
            
        
        
        
            
            
            
        
        
        
            
            
            
        
        
        
            
            
            
        
    

声明的作用:告诉其他的app你可以(View)打开这类的文件,而具体是哪一类文件,借助Action但关键还是借助 MIME 类型

做完了上面的操作,已经可以触发其他应用的打开方式了,但是还不够

qq.png
第四个就是本公司app(打广告).png

2.到声明的Activity下接受其他App传递的消息

void onCreate (Bundle savedInstanceState) {
    ...
    // 获得 intent, action 和 MIME type
    Intent intent = getIntent();
    String action = intent.getAction();
    String type = intent.getType();

    if (Intent.ACTION_VIEW.equals(action) && type != null) {
        if ("application/msword".equals(type)) {
            handle_Doc(intent); // 处理doc
        }
        ...
    }
}

private void handle_Doc(Intent intent) {
    Uri data = intent.getData();
    String path = data.getPath();//文件路径
    ...
}
雨有点大

关于这一功能的参考文档:

MIME 参考手册 - W3School
Android - 分享内容 - 接收其他APP的内容

你可能感兴趣的:(QQ微信,其他方式打开文档(doc,docx,ppt,pptx,xls,xlsx,pdf)到自己的App)