What I wanna do:
I wanna get the path as a String of a file, which I choose via an Android File Manager.
What I have:
So for my Samsung device this worked:
Intent intent = new Intent("com.sec.android.app.myfiles.PICK_DATA"); intent.putExtra("CONTENT_TYPE", "*/*"); intent.addCategory(Intent.CATEGORY_DEFAULT); startActivityForResult(intent, FILE_SELECT_CODE);