简体   繁体   English

看不到真实设备的内部存储

[英]Can't see real device internal storage

Hello android developers! 您好,Android开发人员! I have question about android internal storage. 我对android内部存储有疑问。 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. 我正在使用真实的设备来测试应用程序,但是有一个问题,当我尝试从内部存储中选择文件时,我正在使用三星galaxy s4(API = 19),在这里看不到内部存储,并且对于具有(API> = 23)在以下列表中显示内部存储的新Samsung。

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

storage 存储

How to fix this one? 如何解决这个问题?

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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