文件名称:Android中调用系统的文件浏览器及自制简单的文件浏览器
文件大小:77KB
文件格式:PDF
更新时间:2024-01-25 11:49:11
android id url
调用系统自带的文件浏览器 这很简单: /** 调用文件选择软件来选择文件 **/ private void showFileChooser() { intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType(*/*); intent.addCategory(Intent.CATEGORY_OPENABLE); try { startActivityForResult(Intent.createChooser(intent, 请选择一个要上传的文件), FILE_SELECT_C