Skip to content

Commit

Permalink
audio 默认获取全部格式的
Browse files Browse the repository at this point in the history
  • Loading branch information
didikeeLuanon committed Jan 6, 2020
1 parent e3f1141 commit a952d4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions androidx/src/main/java/com/androidx/picker/AudioLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,12 @@ protected String getOrder() {

@Override
protected String getSelection() {
return MediaStore.MediaColumns.MIME_TYPE + "=?";
return null;
}

@Override
protected String[] getSelectionArgs() {
return new String[]{"audio/*"};
return null;
}

}

0 comments on commit a952d4c

Please sign in to comment.