問題:為什麼無法將檔案傳到emulator的sdcard
答:
首先必須產生SDCard的image file mksdcard <size> <file> ex:mksdcard 1024M sdcard.iso
讓SDCard連到Android Emulator ./emulator -sdcard ~/.android/SDK-1.0/sdcard.iso
透過adb傳收檔案到emulator adb push <local> <remote> adb pull <remote> <local> ex: adb push ~/mp3/audio.mp3 /sdcard/audio.mp3
進入emulator的shell adb shell