How to use native android file-open-dialog?

风流意气都作罢 提交于 2019-11-28 19:11:23

问题


I've seen this dialog to pick/open a file on android in some apps and it seems to me as the native one. But I can't find a way to use it in my own apps. The language of the attached screenshot is German, but I'm sure someone will recognize it. Screenshot of the file-dialog


回答1:


You can use the intent ACTION_GET_CONTENT with the MIME type */*.

It will return the URI in onActivityResult()

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Intent intent = new Intent()
        .setType("*/*")
        .setAction(Intent.ACTION_GET_CONTENT);

        startActivityForResult(Intent.createChooser(intent, "Select a file"), 123);
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if(requestCode == 123 && resultCode == RESULT_OK) {
            Uri selectedfile = data.getData(); //The uri with the location of the file
        }
    }




回答2:


That appears to be the system UI for the Storage Access Framework. You would use ACTION_OPEN_DOCUMENT to allow the user to open an existing document, or ACTION_CREATE_DOCUMENT to allow the user to create a new document.

However, this is not a file UI. It is a content UI. The user can browse things that are not locally stored — in the screenshot, the user can browse their Google Drive and One Drive areas. And, what you get is a Uri pointing to content, not a file path.



来源:https://stackoverflow.com/questions/36557879/how-to-use-native-android-file-open-dialog

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!