Androidのアプリ開発関連のブログ

スクリーンショットの撮り方

Google Playでアプリを配信するのにスクリーンショットが必要だが、ADBでスクリーンショットを撮る方法。

adb -s emulator-5554 shell screencap -p /sdcard/ss1.png
adb -s emulator-5554 pull /sdcard/ss1.png
adb shellでscreencapコマンドを使うことで-pオプションで指定した場所にスクリーンショットが作られるので、pullでもってくる。
adbの-sオプションはデバイスの指定。エミュレーターも含めて複数デバイスがつながっている場合は-sで指定。