手动将文件放入Android模拟器SD卡
我只是无法让我的模拟器 SD 卡正常工作... 我用新的 SD 卡创建了一个新的 AVD 设备。
那么如何将数据放入其中呢?我发现“正确”的文件要安装在守护程序工具上,但已损坏或根本无法读取...
如果您有任何想法,那就太好了:)
I'm just having trouble with getting my emulator SD card work...
I created a new AVD device with a new SD card.
So how to put data onto it? I found the "correct" file to be mounted on Daemon tools, but is corrupt or simply not readable...
It would be great if you have any idea :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果您使用 Eclipse,您可以通过 Android 视角将文件移入或移出 SD 卡(在 Eclipse 中称为 DDMS)。只需选择屏幕左侧的模拟器,然后选择“文件资源管理器”选项卡即可。文件列表上方应该有两个符号,其中一个带有指向手机的箭头,单击此符号将允许您选择要移动到手机内存的文件。
If you are using Eclipse you can move files to and from the SD Card through the Android Perspective (it is called DDMS in Eclipse). Just select the Emulator in the left part of the screen and then choose the File Explorer tab. Above the list with your files should be two symbols, one with an arrow pointing at a phone, clicking this will allow you to choose a file to move to phone memory.
使用SDK自带的adb工具。
如果您仅指定
/sdcard/
(带有尾部斜杠)作为目标,则 myDirectory 的 CONTENTS 将最终位于 /sdcard 的根目录中。Use the adb tool that comes with the SDK.
If you only specify
/sdcard/
(with the trailing slash) as destination, then the CONTENTS of myDirectory will end up in the root of /sdcard.在 Android Studio 中,打开设备管理器:
工具->安卓-> Android Device Monitor
在 Eclipse 中打开设备管理器:
在设备管理器中,您可以在此处将文件添加到 SD 卡:
In Android Studio, open the Device Manager:
Tools -> Android -> Android Device Monitor
In Eclipse open the Device Manager:
In the device manager you can add files to the SD Card here:
一种简单的方法是拖放。它将文件复制到/sdcard/Download。您可以复制整个文件夹或多个文件。确保“启用剪贴板共享”已启用。 (在...->设置下)
One easy way is to drag and drop. It will copy files to /sdcard/Download. You can copy whole folders or multiple files. Make sure that "Enable Clipboard Sharing" is enabled. (under ...->Settings)
我使用的是 Android Studio 3.3。
转到查看 ->工具窗口 ->设备文件资源管理器。或者您可以在 Android Studio 的右下角找到它。
如果模拟器正在运行,设备文件资源管理器将显示模拟器存储上的文件结构。
在这里您可以右键单击文件夹并选择“上传”来放置文件
I am using Android Studio 3.3.
Go to View -> Tools Window -> Device File Explorer. Or you can find it on the Bottom Right corner of the Android Studio.
If the Emulator is running, the Device File Explorer will display the File structure on Emulator Storage.
Here you can right click on a Folder and select "Upload" to place the file
在 Visual Studio 2019 (Xamarin) 中:
In Visual Studio 2019 (Xamarin):