How to Take Screenshot from Android Emulator?

You can take screenshot either from the Android Emulator controls menu or Android Studio Logcat menu

ยท

1 min read

How to Take Screenshot from Android Emulator?

I was so stupid, I have been taking screenshot manually (using the Windows Snipping Tool) from Android emulator without knowing there is already "Screen Capture" feature in Android Studio.

These are 2 ways to take screenshot from your Android Emulator:

Android Emulator Controls Menu

Click on the camera icon How_to_Take_Screenshot_from_Android_Emulator_01.png

You can capture with frame

How_to_Take_Screenshot_from_Android_Emulator_02.png

or without frame How_to_Take_Screenshot_from_Android_Emulator_03.png

Click Save and select the location where you want to save.

Android Studio Logcat

You can do the same in Android Studio Logcat

How_to_Take_Screenshot_from_Android_Emulator_04.png

It brings out the same window, except it has this "Generic Phone" or "Generic Tablet" to choose from.

How_to_Take_Screenshot_from_Android_Emulator_05.png

As you can see above, the frame is a generic frame which is slightly different from the actual frame in your emulator. That's the only difference in this method. There are also additional Rotate Left and Rotate Right buttons, which you can so do it easily from the emulator controls.

Conclusion

Honestly, why give more than one way to do a same thing? This is my general feeling on Android development. We always have more than one way to do a same thing in all aspects, including coding and implementation.

ย