我是靠谱客的博主 聪明板栗,最近开发中收集的这篇文章主要介绍将应用添加到打开方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<intent-filter tools:ignore="AppLinkUrlError">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="application/*" />
    <!--<data android:mimeType="application/pdf" />-->
    <!--<data android:mimeType="application/vnd.ms-excel" />-->
</intent-filter>

Intent intent = getIntent();
String path = null;
if (Intent.ACTION_VIEW.equals(intent.getAction())) {
    String dataString = intent.getDataString();
    String urlDecode = EncodeUtils.urlDecode(dataString);
    try {
        URL url = new URL(urlDecode);
        path = url.getFile();
    } catch (MalformedURLException e) {
        Log.d(TAG, "onCreate: URL格式化失败");
    }
    Log.d(TAG, "onCreate: 被微信调起 = " + path);
}

Uri uri = Uri.fromFile(new File(mUrlPath));

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setAction(Intent.ACTION_SEND); // 分享单个文件
intent.setAction(Intent.ACTION_SEND_MULTIPLE); // 分享多个文件
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uriList); // 分享的多媒体(多)
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setType("application/vnd.openxmlformats-officedocument.wordprocessingml.document");
intent.putExtra(Intent.EXTRA_STREAM, uri); // 分享的多媒体(单)
intent.putExtra(Intent.EXTRA_SUBJECT, "测试标题"); // 添加分享内容标题
intent.putExtra(Intent.EXTRA_TEXT, "测试内容"); // 添加分享内容
startActivity(Intent.createChooser(intent, "分享到")); // 分享Dialog的标题

最后

以上就是聪明板栗为你收集整理的将应用添加到打开方式的全部内容,希望文章能够帮你解决将应用添加到打开方式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部