前端之家收集整理的这篇文章主要介绍了
如何使用蓝牙在app中发送.apk文件,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法在应用程序内使用蓝牙发送.apk
文件?
(例如我们启动应用程序,然后使用应用程序内的共享图标发送.apk
文件)
@H_
403_6@
假设您想发送自己的应用程序的.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"));