web-dev-qa-db-ja.com

Ubuntu 14.04用のAndroidエミュレーターはありますか?

できれば、ウィンドウ上の青いスタックのように適切に動作するもの。

ありがとう

6
alistair_h

Genymotion (この回答のソース。ウェブサイトにはこれの外観に関する画像もあります)は、Androidの仮想環境を提供する完全なツールセットです。開発者、テスター、セールスマン、さらにはゲーマーにとっても非常に便利です。 Genymotionは個人での使用は無料です。すべての機能を使用するには、ライセンスを購入する必要があります。

特徴:

OpenGL acceleration to achieve the best 3D performance
Enable full screen option and improve your experience
Be precise in your UI development with the “pixel perfect” functionality
Start multiple virtual device at the same time
Override virtual device identifiers
Directly command virtual devices sensors with Genymotion Shell
Fully compatible with ADB. You can control your virtual device from the Host
Manage sensors: Battery level / status, GPS, Rotation, Camera

2.1以降:

supports copy/paste from the Host to the virtual device, 
  or from the virtual device to the Host using Android builtin copy/paste feature.
Android 4.4 support

Virtualboxが必要です。 register (無料)で、インストーラをダウンロードディレクトリにダウンロードしてから...

cd ~/Downloads/
chmod +x genymotion-2.1.0_x64.bin
./genymotion-2.1.0_x64.bin

ダウンロードにインストールする場合は、次のようにして開始します。

/home/handbook/Downloads/genymotion/genymotion

個人的な使用は無料であり、私にはすべてのエミュレーターの中でより良いもののようです。

4
Rinzwind