1
我目前正在開發一個項目,其中包括向其他人發送文件,例如,作爲電子郵件附件或藍牙。現在我想直接添加WiFi。Android WiFi直接功能
以下代碼返回能夠使用的應用程序列表 - 例如藍牙,NFC等... WiFi Direct不會顯示在那裏。
Intent shareIntent=new Intent(android.content.Intent.ACTION_SEND);
Uri contentUri = Uri.fromFile(selectedFile);
shareIntent.putExtra(Intent.EXTRA_STREAM, contentUri);
shareIntent.setType("file/*");
Intent chooser = Intent.createChooser(shareIntent , "Select Sender");
startActivity(chooser);
是否有任何理由爲什麼它不?我已經找到了關於如何通過WiFi Direct發送的答案(https://stackoverflow.com/a/25638517),但我確實希望在該選擇器中使用該功能 - 如果可能的話。
在此先感謝!