作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的示例应用程序是打开文件选择器并选择文件/目录,然后将路径获取到 EditText,我尝试了此 question 中的方法我达到了这个结果
public class MainActivity extends AppCompatActivity {
private Button browse;
private EditText editTextPath;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
browse = (Button) findViewById(R.id.browse);
editTextPath = (EditText) findViewById(R.id.path);
browse.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(Intent.createChooser(intent,"Select file or dir"), 1);
setResult(Activity.RESULT_OK);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == 1 && resultCode == Activity.RESULT_OK) {
String Fpath = data.getDataString();
editTextPath.setText(Fpath);
}
}
}
我想像这样将内部和外部存储添加到文件选择器
最佳答案
用户可以点击操作栏中的“...”提示并选择“显示内部存储”以显示这些选项。
ACTION_GET_CONTENT
或 ACTION_OPEN_DOCUMENT
上的任何内容都没有官方支持自动显示内部存储选项,但希望有一天会支持。
关于android - 如何将内部和外部存储添加到 Android 中的文件选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48290094/
我是一名优秀的程序员,十分优秀!