Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 react native 编写了一个 tvOS 应用程序,但列表视图很少,我想将焦点集中在列表视图中的特定项目上?
有可能的 ?
使用 tvOS 并做出原生反应,如果您想强制可聚焦组件成为焦点,您只需将 hasTVPreferredFocus 设置为 true
让我给你看一个例子:
<TouchableHighlight hasTVPreferredFocus={true} onPress={() => {}} > <Text>Hello</Text> </TouchableHighlight>