Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
I am trying to open the file downloaded by DownloadManager. I registered a BroadcastReceiver with action DownloadManager.ACTION_DOWNLOAD_COMPLETE.
DownloadManager
BroadcastReceiver
DownloadManager.ACTION_DOWNLOAD_COMPLETE
Here's the onReceive method of my receiver-
onReceive
try { DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE); long downloadId = com/tag/intent">intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, 0); DownloadManager.Query query = new DownloadManager.Query(); query.setFilterById(downloadId); Cursor c = dm != null ? dm.query(query) : null; Log.d("Cursor", String.valueOf(c)); String uri = null; if (c != null && c.moveToFirst()) { uri = c.getString(c.getColumnIndex("local_uri")); } Log.d("URI", uri); Intent open = new Intent(Intent.ACTION_VIEW); open.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION); //Get mime type String mimeType = "*/*"; String extension = null; extension = MimeTypeMap.getFileExtensionFromUrl(uri); if (extension != null) { mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension); } //Set data and start activity open.setDataAndType(FileProvider.getUriForFile(getApplicationContext(), getPackageName() + ".provider", new File(Uri.parse(uri).getPath())), mimeType); //It shows error at this line startActivity(install); } catch (Exception e) { e.printStackTrace(); }
Here is the provider tag in my AndroidManifest.xml file -
provider
AndroidManifest.xml
<provider com/com/tag/tag">tag/android">android:name= REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
Replace new File(uri) with new File(Uri.parse(uri).getPath()) in your FileProvider.getUriForFile() call. The value that you get from local_uri appears to be a Uri, with a file scheme.
new File(uri)
new File(Uri.parse(uri).getPath())
FileProvider.getUriForFile()
local_uri
Uri
file
Also, depending upon the rest of the Uri, you may need to replace external-files-path with external-path.
external-files-path
external-path
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.