如何使用意图直接打开文件夹?

时间:2019-02-24 13:55:07

标签: java android

我希望我的应用程序在单击按钮打开文件时直接在文件夹e-warta中打开文件PDF。 但是当我单击我的按钮时,总是这样打开

image1

我想这样打开  image2

这是我的按钮单击 enter image description here

这是我的代码

openfile.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
            Uri uri = Uri.parse(Environment.getExternalStorageDirectory().getPath()+ File.separator+"e-warta"+File.separator);
            intent.setDataAndType(uri, "application/pdf");
            startActivityForResult(Intent.createChooser(intent,"Open"), PICKFILE_REQUEST_CODE);
        }
    });

0 个答案:

没有答案