如何在caph列表中获得焦点项目始终处于第一位置?

时间:2016-12-19 09:04:18

标签: tizen samsung-smart-tv tizen-web-app

使用Caph 3.1.0,我在资产列表中列出了n个可聚焦元素。

滚动时,我希望焦点元素始终位于位置1。滚动整个列表而不是光标。这样,用户在点击箭头键时总是在屏幕上看同一个地方。

我现在有什么:

el1.focused el2 el3 el4 ...
then hit right arrow key
el1 el2.focused el3 el4 ... (the user's eyes have to move to the right to see the focused element)

我想要的是什么:

el1.focused el2 el3 el4 ...
then hit right arrow key
el2.focused el3 el4 el5 ... (the user's eyes did not have to move, the entire list scrolled)

这可能与Caph有关吗?我在文档中找不到任何内容。

提前致谢

1 个答案:

答案 0 :(得分:1)

如果它“帮助”其他人,请回复自己:

我写信给caph@samsung.com,这是他们的回答: “当前版本(3.1.x)caph-list不支持auto始终聚焦最左边的项目。用户可以尝试使用”on-scroll-finish“事件在滚动完成时聚焦最左边的项目。”

此致