Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 初級開發 >> Android使用SDK方法詳解

Android使用SDK方法詳解

編輯:初級開發

Android 手機操作系統可以在模擬器中進行一些特定的修改以此滿足用戶的各種需求。那麼如何能在模擬器中正確的應用android使用SDK呢?我們將會在這裡對這一應用技巧進行一個詳細的介紹。

  1. 在android模擬器上安裝和卸載APK包

  1.adb install [-l] [-r] < file> - push this package

  file to the device and install it

  2.('-l' means forward-lock the app)

  ('-r' means reinstall the app, keeping its data)

  3.adb uninstall [-k] < package> - remove this app

  package from the device

  4.('-k' means keep the data and cache directorIEs)

  安裝:

  1.adb install filename.apk

  2.D:\android-sdk\tools>adb install filename.apk

  3.* daemon not running. starting it now *

  4.* daemon started successfully *

  5.347 KB/s (111196 bytes in 0.312s)

  6.pkg: /data/local/tmp/filename.apk

  7.Success

  卸載:

  adb uninstall filename.apk

  或者

  adb shell rm data/app/filename.apk

  2. 在android模擬器上使用sd card

  生成sdcard鏡像文件:

  1.mksdcard: create a blank FAT32 image to be

  used with the android emulator

  2.usage: mksdcard [-l label] < size> < file>

  3.if < size> is a simple integer, it specifIEs

  a size in bytes

  4.if < size> is an integer followed by 'K', it

  specifIEs a size in KiB

  5.if < size> is an integer followed by 'M', it

  specifIEs a size in MiB

  6.D:\android-sdk\tools>mksdcard.exe -l sdcard

  2048M sdcard.img

  啟動模擬器:emulator -sdcard sdcard鏡像文件

  例如: emulator -sdcard sdcard.img

  將資源放入到sdcard裡面: adb push source-file /sdcard

  例如:

  1.D:\android-sdk\tools>adb push NOTICE.txt /sdcard

  2.1088 KB/s (156733 bytes in 0.140s)

  使用命令adb shell 查看sdcard目錄:

  1.D:\android-sdk\tools>adb shell

  2.# ls sdcard

  3.NOTICE.txt

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved