简体   繁体   中英

Can't see real device internal storage

Hello android developers! I have question about android internal storage. I'm using real device to test app, but I have one problem, when I trying to choose file from internal storage, I'm using samsung galaxy s4,(API = 19), and here can't see internal storage, and for new Samsung which has (API>=23) shows internal storage in list below.

 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
 intent.setType("*/*");
 startActivityForResult(intent, PICK_CERT_REQUEST);

storage

How to fix this one?

要查看内部存储器上的文件,您必须具有root权限或为此拥有一个应用程序。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM