How to emulate AndroidTV on windows 10/11 fullscreen quick setup easy to use

Опубликовано: 17 Июнь 2026
на канале: WHMC
1,086
13

1. download and install android studio (developer.android.com/studio)
2. download and install ahk 2.0 (www.autohotkey.com/v2/)
3. once android studio is finished installing press more actions
4. press virtual device manager
5. press the + sign
6. then select tv on the side
7. then press whatever quality youd like
8. id reccommend going "Android TV x86 Atp, System Image" then press finish
9. then now use my script (ive made for 2k monitor. if you have else then youll need to change it)
10. enjoy

Extra
ive made the ahk script to be used with default skin dont change skin unless you wanna dick with the script

subscribe ig

Recommended apps
SmartTube (github.com/yuliskov/SmartTube)
OnStream (onstreamapks.com/download-onstream-apk-dl2/)

Script:

#Requires AutoHotkey v2.0

emulatorPath := "C:\Users\Admin\AppData\Local\Android\Sdk\emulator\emulator.exe" ; (change account name)
avdName := "Television_1080p"
windowTitle := "Android Emulator - Television_1080p:5554"

targetX := 0 - 115 ; Change to whats needed (left)
targetY := 0 - 80 ; change to whats needed (up)


targetW := 3660 ; (change to whats needed)
targetH := 1670

Run Format('"{1}" -avd {2}', emulatorPath, avdName)

WinWait windowTitle,, 20

WinSetStyle "-0xC00000", windowTitle ; remove caption/title bar
WinSetStyle "-0x40000", windowTitle ; remove thick frame

WinMove targetX, targetY, targetW, targetH, windowTitle