微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何使用蓝牙在app中发送.apk文件

有没有办法在应用程序内使用蓝牙发送.apk文件
(例如我们启动应用程序,然后使用应用程序内的共享图标发送.apk文件)

解决方法

假设您想发送自己的应用程序的.apk,这很简单:
// Get current ApplicationInfo to find .apk path
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("*/*");

// Only use Bluetooth to send .apk
intent.setPackage("com.android.bluetooth");

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

原文地址:https://www.jb51.cc/android/315928.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐