gpt4 book ai didi

模拟器上的 Android 文件选择器

转载 作者:行者123 更新时间:2023-11-29 19:43:32 25 4
gpt4 key购买 nike

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

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);
}
});

最佳答案

虽然我无法使用模拟器中的 android native 文件选择器解决它。我可以成功地使用 ES 文件资源管理器来解决这个问题。

关于模拟器上的 Android 文件选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38242142/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com