如何使用 TVML/TVJS 检测键盘输入

How to detect keyboard input with TVML/TVJS

如标题所示,我想知道如何使用 TVML 模板和 Apple Catalog Project

中的 TVJS 设计模式检测键盘输入

例如:当显示Search.xml.js时,用户选择了键盘上的'a'键,我如何检测到他们选择了'a'键?

深入研究 Apple 文档后,我找到了答案。

这里是Keyboard onTextChange

的参考

这是一个使用示例:

var doc = Presenter.makeDocument(resource);
var searchField = doc.getElementById("SearchField"); //I added an id to the searchField to make it easy to access.
var keyboard = searchField.getFeature("Keyboard");
    keyboard.onTextChange = function () {                                
      swiftLog(keyboard.text);
    };