当前位置: 代码迷 >> Android >> android 模拟器运用
  详细解决方案

android 模拟器运用

热度:85   发布时间:2016-05-01 16:40:36.0
android 模拟器使用
模拟器的所有快捷键(来自文档的截图)



模拟器的配置

Device ram size: The amount of physical RAM on the device, in megabytes. 
hw.ramSize [96]:256
询问是否要更改手机的内存容量,默认值为96 MB,这个示范更改为256 MB。

Touch-screen support: Whether there is a touch screen or not on the device. 
hw.touchScreen [yes]:yes
询问是否要让手机支持触碰屏幕功能,默认为yes,表示支持。

Track-ball support: Whether there is a trackball on the device. 
hw.trackBall [yes]:yes
询问是否要让手机支持轨迹球功能,默认为yes,表示支持。

Keyboard support: Whether the device has a QWERTY keyboard. 
hw.keyboard [yes]:yes
询问是否要让手机支持QWERTY键盘输入功能,默认为yes,表示支持。

DPad support: Whether the device has DPad keys 
hw.dPad [yes]:yes
询问您是否要让手机支持DPad键,默认为yes,表示支持。DPad键就是手机上的那些Home键、返回键、电话键、电源键。

GSM modem support: Whether there is a GSM modem in the device. 
hw.gsmModem [yes]:yes
询问是否要让手机支持GSM modem功能,默认为yes,表示支持。

Camera support: Whether the device has a camera. 
hw.camera [no]:yes
询问是否要让手机支持照相机功能,默认为no,表示不搭载照相机,若要让仿真器拥有照相机装置,可以选择yes(支持)。

Maximum horizontal camera pixels 
hw.camera.maxHorizontalPixels [640]:640
若让手机支持照相机功能,接着会要求定义照相机的像素,默认水平像素为640。

Maximum vertical camera pixels 
hw.camera.maxVerticalPixels [480]:480
照相机默认垂直像素为480。

GPS support: Whether there is a GPS in the device. 
hw.gps [yes]:yes
询问是否要让手机支持GPS卫星导航功能,默认为yes,表示支持。

Battery support: Whether the device can run on a battery. 
hw.battery [yes]:yes
询问是否要让手机支持电池功能,默认为yes,表示支持。

Accelerometer: Whether there is an accelerometer in the device. 
hw.accelerometer [yes]:yes
询问是否要让手机支持加速器功能,默认为yes,表示支持。

Audio recording support: Whether the device can record audio 
hw.audioInput [yes]:yes
询问是否要让手机支持音乐录制功能,默认为yes,表示支持。

Audio playback support: Whether the device can play audio 
hw.audioOutput [yes]:yes
询问是否要让手机支持音乐播放功能,默认为yes,表示支持。

SD Card support: Whether the device supports
insertion/removal of virtual SD Car 
ds.hw.sdCard [yes]:yes
询问是否要让手机支持外接SD存储卡功能,默认为yes,表示支持。

Cache partition support: Whether we use a cache partition on the device. 
disk.cachePartition [yes]:yes
询问是否要让Android手机系统支持额外的/cache分割区,这样放在/cache的暂存文件不会使用到Android系统空间,默认为yes,表示支持。

Cache partition size 
disk.cachePartition.size [66MB]:128 
最后要指定/cache分割区的大小,默认值为66 MB,这个示范使用128 MB。
  相关解决方案