You need to make a file (track) selection from a third-party application.
For example:
To open the file selection dialog, I found that I need to use Intent, but I do not understand which category is better to use.
If you use the following code:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("audio/*"); Intent fileIntent = Intent.createChooser(intent,"Выбор файла"); startActivityForResult(intent,123); 

