How to browse android emulator SD on Windows without Eclipse?
Can't understand how to browse android emulator sd card. I am using IDEA, not Eclipse and can't use Eclipse tool 开发者_JAVA百科for this purpose.
Use DDMS. It is available as a standalone tool, in addition to the Eclipse perspective.
Or you can also use adb
located in android-sdk-directory/tools
.
To do this open up a command line and type adb shell
when developing on Linux or adb.exe shell
when developing on Windows then you will be logged in into your Android emulator where you can simply use basic UNIX commands to navigate to the SDcard.
You'd do that like this cd /sdcard
and to list whats in there you us ls
.
Hope it helped.
I'm using ImDisk. Very easy to mount the iso file, just right click on it and choose mount from the menu. Add/Remove files as there will appear a new mounted unit and once done, right click and unmount. I also assumed you are running windows, as a nix user wouldn't ask such question :)
精彩评论