我在我的Android应用程序中实现了一个文件选择器,我为AUDIO,VIDEO,IMAGE分别提供了3个不同的文件选择器。
它在Android 7.0下工作良好,点击后,它将进入图库以选择该类型的文件。
但是在Android 7.0中,当我点击选择文件选择器时,它会转到RECENT并从那里手动我需要去音频或图片库,我怎么能直接进入音频库点击文件选择器作为其在kitkat工作。
以下是我调用文件选择器的代码 -
private void showFileChooser() {
Intent intent = new Intent();
//sets the select file to all types of files
intent.setType("audio/*");
//allows to select data and return it
intent.setAction(Intent.ACTION_GET_CONTENT);
//starts new activity to select file and return data
startActivityForResult(Intent.createChooser(intent,"Choose File to Upload.."),PICK_FILE_REQUEST);
}