python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Saving TTS audio files to shared storage in android 10
I want to save my audio file to shared storage in android 10 which is created using :
textToSpeech.synthesizeToFile(text,params,file,"utterance_id");
file is of ParcelFileDescriptor type wh...
Kartik Thakur
Votes: 0
Answers: 1
Android 11 Multiple Images with limit
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent.setType("image/*");
startAct...

Muhammad Saad
Votes: 0
Answers: 1
Android Scope storage - Download Images and store in Downloads directory
I updated my project to target sdk 31 from 28. I am downloading images from a url into a folder Download/MyMainFolder/folder1/folder2/iamge1.png.
The path I was setting in downloadmanager
setDestinati...

faizan
Votes: 0
Answers: 0