7

I would like to know if there is any possibility to mirror my android device in real time using android studio? Or anything else that may be used just with an usb or hdmi cable with no required registration? I tried a couple of little software apps so far but there is a delay consinsting in more than 10 seconds until the action is mirrored on the pc. Thank you in advance.

Steffi
  • 867
  • 5
  • 14
  • 29
  • You can use a chromecast to mirror the display to your TV or anything that has HDMI input, so that should include most monitors – Populus Mar 20 '15 at 20:23

4 Answers4

14

I am using Vysor which doesn't need registration, but free version limits the resolution, so it may not be optimal for certain purposes

Edit, I just discovered scrcpy which seems to work way better and even supports copy-pasting from PC to device

Cris
  • 774
  • 9
  • 32
  • 6
    I agree with `scrcpy`. It is simple to use and easy to set up. – Jk Jensen Dec 10 '18 at 04:49
  • ++ for scrcpy. I'm gonna buy Vysor pro but scrcpy saved me 40$. – Shin-chan Mar 19 '21 at 23:38
  • Wow, I wish software experiences were all like `scrcpy`. I'm on Windows, no installation, 30mb download, I literally opened the `.exe`, it assumed my Android was the one to show and it displayed it. No config, no selection, no adverts, just open and go. 10/10. – dKen Mar 25 '22 at 04:44
3

Now you can do it with Android Studio https://developer.android.com/studio/preview/features#device-mirroring

Daniele
  • 1,030
  • 9
  • 20
2

Now this feature is available in Android Studio Electric Eel Yay!

Preference > Experimental > Device Mirroring

-1

You can try AllCast. http://www.omgchrome.com/cast-android-mirror-chrome-desktop-pc/

or may be, you can first record your screen and play it back later by using adb shell screenrecord /sdcard/demo.mp4 and pull the file back using adb pull /sdcard/demo.mp4

kaho
  • 4,746
  • 1
  • 16
  • 24
  • I would avoid third-party solutions if your framework provides you with everything you need. Check this out https://developer.android.com/studio/preview/features#device-mirroring-giraffe – Daniele Feb 24 '23 at 15:05