当我无法在模拟器上的android select file对话框中选择所需文件时,我遇到了问题。我能够看到该文件,但选择被禁用,如下面的屏幕截图所示。此问题仅来自模拟器,而不是真实设备。
以下是我为显示文件选择对话框而编写的代码。
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);
}
});
答案 0 :(得分:2)
虽然我无法使用模拟器中的android原生文件选择器来解决它。我可以成功使用ES文件浏览器来解决这个问题。