How can I confim that a file was sent successfully via bluetooth using Android 4+
I have written an app that sends a file to a laptop via Bluetooth. I would like to be able to delete that file automatically after some confirmation that the file was sent successfully. I get a Toast message from BlueTooth Share that the file was sent, but how can I detect this from my app? Is there a callback that I can use for this? Here is my method for sending the file using Android 4+ File filename = new File(path + "/" + itemValue); Uri uri = Uri.fromFile(filename); //send file via bluetooth Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/*"); //this causes us to