模拟器上的Android文件选择器

时间:2016-07-07 09:37:26

标签: android emulation android-afilechooser

当我无法在模拟器上的android select file对话框中选择所需文件时,我遇到了问题。我能够看到该文件,但选择被禁用,如下面的屏幕截图所示。此问题仅来自模拟器,而不是真实设备。

enter image description here

以下是我为显示文件选择对话框而编写的代码。

findViewById(R.id.browse).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
            intent.setType("file/*");
            startActivityForResult(intent, MainActivity.REQUEST_SELECT_FILE);
        }
    });

1 个答案:

答案 0 :(得分:2)

虽然我无法使用模拟器中的android原生文件选择器来解决它。我可以成功使用ES文件浏览器来解决这个问题。