当前位置:  开发笔记 > Android > 正文

在android中分享APK通过分享选项

如何解决《在android中分享APK通过分享选项》经验,为你挑选了1个好方法。

嗨,我正在尝试制作一个按钮,通过蓝牙和ShareIt等其他媒体分享我的应用程序.我试过这个

public void onClick(View view) {
    Intent sendIntent = new Intent();
    sendIntent.setAction(Intent.ACTION_SEND);
    sendIntent.putExtra(Intent.EXTRA_TEXT, "Share this application");
    sendIntent.setType("text/plain");
    startActivity(sendIntent);
}

这适用于共享一些文本.现在我如何通过这个分享我的apk文件或应用程序?



1> Ali Sherafat..:
private void shareApplication() {
        ApplicationInfo app = getApplicationContext().getApplicationInfo();
        String filePath = app.sourceDir;

        Intent intent = new Intent(Intent.ACTION_SEND);

        // MIME of .apk is "application/vnd.android.package-archive".
        // but Bluetooth does not accept this. Let's use "*/*" instead.
        intent.setType("*/*");


        // Append file and send Intent
        intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(filePath)));
        startActivity(Intent.createChooser(intent, "Share app via"));
    }

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有