在命令行输入: emulator -help,即可显示emulator支持的所有命令。

Android Emulator usage:

emulator [options] [-qemu args]

options: 
    -sysdir <dir>                 在目录<dir>中搜索system.img 
    -system <file>                读取system.img文件<file>    
    -datadir <dir>                写入用户数据到目录 <dir> 
    -kernel <file>                使用指定内核kernel-qemu文件 
    -ramdisk <file>               指定ram 镜像文件ramdisk.img 
    -image <file>                  obsolete, use -system <file> instead 
    -init-data <file>              initial data image (default <system>/userdata.img 
    -initdata <file>               same as '-init-data <file>' 
    -data <file>                   data image 
                                   (default <datadir>/userdata-qemu.i 
mg 
    -partition-size <size>         分区大小MBs 
    -cache <file>                  cache.img 
    -no-cache                      禁止缓存 
    -nocache                       禁止缓存 
    -sdcard <file>                 sdcard.img 
    -wipe-data                     reset the use data image (copy it from initda 
ta) 
    -avd <name>                    使用指定AVD设备 
    -skindir <dir>                 search skins in <dir> (default <system>/skins 

    -skin <name>                   select a given skin 
    -no-skin                       don't use any emulator skin 
    -noskin                        same as -no-skin 
    -memory <size>                 物理内存大小MBs 
    -netspeed <speed>              最大网速 
    -netdelay <delay>              网络延迟 
    -netfast                       disable network shaping 
    -trace <name>                  enable code profiling (F9 to start) 
    -show-kernel                   显示内核消息 
    -shell                         终端启用root shell 
    -no-jni                        disable JNI checks in the Dalvik runtime 
    -nojni                         same as -no-jni 
    -logcat <tags>                 查看日志 
    -no-audio                      disable audio support 
    -noaudio                       same as -no-audio 
    -audio <backend>               use specific audio backend 
    -audio-in <backend>            use specific audio input backend 
    -audio-out <backend>           use specific audio output backend 
    -raw-keys                      disable Unicode keyboard reverse-mapping 
    -radio <device>                无线猫 
    -port <port>                   连接控制台的TCP端口. 
    -ports <consoleport>,<adbport> TCP ports used for the console and adb bridge

-onion <image>                 use overlay PNG image over screen 
    -onion-alpha <%age>            specify onion-skin translucency 
    -onion-rotation 0|1|2|3        specify onion-skin rotation 
    -scale <scale>                 窗口缩放 
    -dpi-device <dpi>              specify device's resolution in dpi (default 1 
65) 
    -http-proxy <proxy>            HTTP/HTTPS 代理 
    -timezone <timezone>           时区 
    -dns-server <servers>          DNS服务器 
    -cpu-delay <cpudelay>          throttle CPU emulation 
    -no-boot-anim                  disable animation for faster boot 
    -no-window                     disable graphical window display 
    -version                       版本 
    -report-console <socket>       report console port to remote socket 
    -gps <device>                  redirect NMEA GPS to character device 
    -keyset <name>                 specify keyset file name 
    -shell-serial <device>         specific character device for root shell 
    -old-system                    support old (pre 1.4) system images 
    -tcpdump <file>                记录网络数据包 
    -bootchart <timeout>           enable bootcharting 
    -prop <name>=<value>           设置系统属性

-qemu args...                 pass arguments to qemu 
     -qemu -h                      显示qemu帮助

-verbose                      same as '-debug-init' 
     -debug <tags>                 enable/disable debug messages 
     -debug-<tag>                  enable specific debug messages 
     -debug-no-<tag>               disable specific debug messages

-help                         帮助 
     -help-<option>                print option-specific help

-help-disk-images             about disk images 
     -help-keys                    supported key bindings 
     -help-debug-tags              debug tags for -debug <tags> 
     -help-char-devices            character <device> specification 
     -help-environment             environment variables 
     -help-keyset-file             key bindings configuration file 
     -help-virtual-device          virtual device management 
     -help-sdk-images              about disk images when using the SDK 
     -help-build-images            about disk images when building Android 
     -help-all                     帮助(所有)

-------------------------

模拟器至少需要: 
kernel-qemu 
ramdisk.img 
system.img 
userdata.img

还可以包括: 
sdcard.img 
userdata-qemu.img 
cache.img 
system-qemu.img

转: android emulator 命令详解的更多相关文章

  1. android adb 命令详解

    ADB (Android Debug Bridge)  是android SDK中的工具,需要先配置环境变量才能使用.起调试桥的作用,可以管理安卓设备.(也叫debug工具) ---------查看设 ...

  2. Android ADB命令详解

    adb的全称为Android Debug Bridge.是android司机经常用到的工具 . 你能在本篇文章中学到什么? adb基本指令 Shell AM&PM adb模拟用户事件 logc ...

  3. Android logcat命令详解

    一.logcat命令介绍 1.android log系统 2.logcat介绍 logcat是android中的一个命令行工具,可以用于得到程序的log信息 log类是一个日志类,可以在代码中使用lo ...

  4. Android pm 命令详解

    一.pm命令介绍与包名信息查询 1.pm命令介绍 pm工具为包管理(package manager)的简称 可以使用pm工具来执行应用的安装和查询应用宝的信息.系统权限.控制应用 pm工具是Andro ...

  5. adb shell 命令详解,android

    http://www.miui.com/article-275-1.html http://noobjava.iteye.com/blog/1914348 adb shell 命令详解,android ...

  6. Android ADB命令教程二——ADB命令详解

    Android ADB命令教程二——ADB命令详解 转载▼ 原文链接:http://www.tbk.ren/article/249.html       我们使用 adb -h 来看看,adb命令里面 ...

  7. adb shell 命令详解,android, adb logcat

    http://www.miui.com/article-275-1.html http://noobjava.iteye.com/blog/1914348 adb shell 命令详解,android ...

  8. Android Studio系列教程五--Gradle命令详解与导入第三方包

    Android Studio系列教程五--Gradle命令详解与导入第三方包 2015 年 01 月 05 日 DevTools 本文为个人原创,欢迎转载,但请务必在明显位置注明出处!http://s ...

  9. Android的logcat命令详解

    前言          欢迎大家我分享和推荐好用的代码段~~ 声明          欢迎转载,但请保留文章原始出处:          CSDN:http://www.csdn.net        ...

随机推荐

  1. aoj 0033 Ball【dfs/枚举】

    有一个形似央视大楼(Orz)的筒,从A口可以放球,放进去的球可通过挡板DE使其掉进B裤管或C裤管里,现有带1-10标号的球按给定顺序从A口放入,问是否有一种控制挡板的策略可以使B裤管和C裤管中的球从下 ...

  2. Python与数据结构[4] -> 散列表[0] -> 散列表与散列函数的 Python 实现

    散列表 / Hash Table 散列表与散列函数 散列表是一种将关键字映射到特定数组位置的一种数据结构,而将关键字映射到0至TableSize-1过程的函数,即为散列函数. Hash Table: ...

  3. luogu P1325 雷达安装

    题目描述 描述: 假设海岸线是一条无限延伸的直线.它的一侧是陆地,另一侧是海洋.每一座小岛是在海面上的一个点.雷达必须安装在陆地上(包括海岸线),并且每个雷达都有相同的扫描范围d.你的任务是建立尽量少 ...

  4. [BZOJ 4034] 树上操作

    Link: BZOJ 4034 传送门 Solution: 树剖模板题…… Code: #include <bits/stdc++.h> using namespace std; type ...

  5. 7.2(java学习笔记)URL

    一.URL URL类表示统一资源定位符,指向万维网上“资源”的指针. 资源可以是简单的文件或目录,也可以是对更复杂对象的引用,比如对数据库或搜索引擎的查询. URL即是定位也是资源,定位到网络中一个具 ...

  6. cojs.tk(所有题目来源) 树状数组专练

    1.求和问题 ★   输入文件:sum.in   输出文件:sum.out   简单对比时间限制:1.2 s   内存限制:128 MB [问题描述]     在一个长度为n的整数数列中取出连续的若干 ...

  7. iOS开发——随机数的使用

    1).arc4random() 比较精确不需要生成随即种子        使用方法 :                  通过arc4random() 获取0到x-1之间的整数的代码如下:       ...

  8. Ubuntu 16.04下将ISO镜像制作成U盘启动的工具-UNetbootin(UltraISO的替代工具)

    说明: 1.在Windows下制作ISO镜像的U盘启动工具有很多,但是在Linux平台下估计就只有UNetbootin这个工具最好用了,效果和Windows下的制作方法差不多,但是这个工具只能针对Li ...

  9. [置顶] Windows显示驱动(WDDM)编程初步(2)

    欢迎转载[作者:张佩][原文:http://www.yiiyee.cn/Blog/wddm2/] 第二部分专门只讲VIDPN.这是后面内容的基础.WDDM框架用VIDPN这个概念,来描述它所要处理的显 ...

  10. 【JVM】调优笔记1-----堆栈概念的对碰

    关于JVM的工作原理以及调优是一个向往已久的模块,终于有幸接触到:http://pengjiaheng.iteye.com/blog/518623 那就顺着这个思路,来梳理一下自己看到后的结论和感想. ...