Android 下载文件到内部存储 - 画世界
binding.appBarMain.fab.setOnClickListener { view -> val url = 'https://127.0.0.1/1.jar' val request = DownloadManager.Request(Uri.parse(url)) request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, '画世界/1.jar') val downloadManager = getSystemService(Context.DOWNLOAD_SERVICE) as DownloadManager downloadManager.enqueue(request) }
原文地址: https://www.cveoy.top/t/topic/lDih 著作权归作者所有。请勿转载和采集!