【问题标题】:How can i share Apk files with share intent?如何以共享意图共享 Apk 文件?
【发布时间】:2020-05-13 06:23:34
【问题描述】:

当用户点击分享按钮时,如何直接从您的安卓应用程序分享 Apk 文件,所有分享网站都将打开并分享 Apk 文件??

【问题讨论】:

标签: android android-intent apk share


【解决方案1】:
ApplicationInfo api = getApplicationContext().getApplicationInfo();
String apkPath = api.sourceDir;
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("application/vnd.android.package-archive");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(apkPath)));
startActivity(Intent.createChooser(intent, "Share Via"));

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2023-04-03
    • 2015-09-08
    • 1970-01-01
    • 2012-02-04
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多