Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Android 设备包含默认文件管理器和一个按钮(打开)。单击按钮时如何打开文件管理器?
在你的按钮监听器中尝试这样的事情:
openButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(); intent.setAction(Intent.ACTION_GET_CONTENT); intent.setType("file/*"); startActivity(intent); } }