How to Install and Run Android TV on Windows 11 PC Using Android Studio

Опубликовано: 20 Июль 2026
на канале: Tech Infokart
279
13

How to Install and Run Android TV on Windows 11 PC Using Android Studio
#androidtv #androidstudio #autohotkey

In this video, I'll show you how to install and run Android TV on a Windows 11 PC using Android Studio. If you want to experience Android TV without purchasing a physical Android TV box, this step-by-step tutorial is for you.
We'll start by downloading and installing Android Studio, then create an Android TV virtual device using the Android Emulator. I'll also show you how to optimize the emulator settings for better performance, allocate RAM and storage correctly, and launch Android TV directly on your Windows computer.
One common issue with the Android TV emulator is that it doesn't always open properly in full-screen mode. To solve this, I'll demonstrate how to use AutoHotkey to automatically launch the Android TV emulator in a much cleaner full-screen view.
By the end of this tutorial, you'll be able to:
✔ Install Android Studio on Windows 11
✔ Create an Android TV virtual device
✔ Download and configure Android TV system images
✔ Optimize emulator performance settings
✔ Fix Android TV emulator full-screen issues
✔ Run Android TV on your PC without a TV box
✔ Install Android TV apps from the Play Store

Useful Links:
Android Studio:
https://developer.android.com/studio
AutoHotkey:
https://www.autohotkey.com

📢 Stay Connected:
Follow My YouTube Channel for More Tutorials!
🔗YouTube Channel:    / @techinfokart  
Visit My Website for Step-by-Step Guides!
🌐Website: www.thetechinfokart.com



AutoHotkey Script:

#Requires AutoHotkey v2.0
SetTitleMatchMode 2

emulatorPath := "C:\Users\username\AppData\Local\Android\Sdk\emulator\emulator.exe"
avdName := "TV_Name"
windowTitle := "Android Emulator - TV_Name"

targetX := -85
targetY := -63
targetW := 2090
targetH := 2000

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

hwnd := WinWait(windowTitle, , 120)

if !hwnd {
MsgBox("Emulator window not found. Please check the AVD name and window title.")
ExitApp()
}

win := "ahk_id " hwnd

WinActivate(win)
Sleep 5000

WinSetStyle("-0xC00000", win)
WinSetStyle("-0x40000", win)

WinMove(targetX, targetY, targetW, targetH, win)