简体   繁体   中英

Viewing hidden files on Android Studio's Android Device Monitor?

I have created a hidden directory for my app and wish to view it on Android Studio's Android Device Monitor, however, ADM does not show the directory. How can I change ADM's preferences to view that folder?

This still seems not to be possible in Android studio without a hack. An alternate method is using adb:

adb shell
cd your/desired/directory
ls -a

etc.

阅读为源代码后,我发现将命令“ ls -l”提交到设备,因此,如果我们要查看隐藏的文件,则可以将as作为源代码回购,将命令更改为“ ls -al”,然后构建如。

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