[Youtube Shorts] Remote Control Keys That Work by Default in Tizen TV Apps
When developing Tizen TV apps, you don’t need to register every remote control key manually. Several keys work right out of the box — and knowing which ones saves you unnecessary code.
Navigation Keys That Work by Default
The directional arrow keys — Up, Down, Left, and Right — are pre-registered and ready to use without any setup. The Enter key (for selection) and the Return key (go-back navigation) also work automatically. You can rely on these for standard TV navigation patterns without touching the key registration API.
System and Media Keys Are Pre-Registered Too
Beyond navigation, several other common keys are handled by default:
- Exit key — closes your app
- Volume and Channel buttons — handled at the system level and just work
- Media controls — Play, Pause, and Stop are pre-registered and ready to listen for
What This Means for Your Code
Since these keys are pre-registered by the Tizen platform, you only need to add event listeners for them — no need to call registerKey() or registerKeyBatch() first. This simplifies your input handling code and reduces the chance of accidentally double-registering keys. Reserve the registration step for specialty keys like color buttons or media function keys that aren’t handled by default.
Watch the full short for a quick visual walkthrough of exactly which keys you can skip registering in your Tizen TV app.