我在我的Android應用程序中使用下面的代碼發送文件:發送文件使用內置的藍牙應用程序在Android中
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
startActivity(intent);
但它顯示我像列表電子郵件,藍牙,和許多其他。我不想要這個列表,並且應該直接發送,而不需要用戶交互到配對設備。
它可能在android中?
在此先感謝。
嘿,你可以請分享完整的源代碼我也堅持這一點。提前致謝。 – anddev