如何在 Tizen 原生 API 应用程序中实现巨大的圆圈 genlist 中的快速导航?
How to implement quick navigation in a huge circle genlist on in a Tizen native API app?
circle genlist is great for selecting from a list of items like for example contacts. If the list is huge though navigation gets a little cumbersome. There is a feature called fast rotary action解决了这个问题。但根据 linked 文档,它在 Tizen 本机 API 应用程序中不可用。
在 Tizen 本机 API 应用程序的巨大圆圈 genlist 中实现快速导航的最佳方法是什么?我是否必须自己想出一些东西,比如上游 A-Z 列表 link 到圈子 genlist 中,或者有一些推荐的方法吗?
本机应用程序目前不支持快速旋转动作。
如果你想用旋转事件实现快速导航,
你可以手动调用
elm_genlist_item_bring_in(Elm_Object_Item *item, Elm_Genlist_Scrollto_Type *type)
通过处理提供的旋转事件将项目放入视口中。
查看更多关于旋转事件的信息,
https://docs.tizen.org/application/native/guides/ui/efl/rotary-events/
谢谢。
circle genlist is great for selecting from a list of items like for example contacts. If the list is huge though navigation gets a little cumbersome. There is a feature called fast rotary action解决了这个问题。但根据 linked 文档,它在 Tizen 本机 API 应用程序中不可用。
在 Tizen 本机 API 应用程序的巨大圆圈 genlist 中实现快速导航的最佳方法是什么?我是否必须自己想出一些东西,比如上游 A-Z 列表 link 到圈子 genlist 中,或者有一些推荐的方法吗?
本机应用程序目前不支持快速旋转动作。
如果你想用旋转事件实现快速导航, 你可以手动调用
elm_genlist_item_bring_in(Elm_Object_Item *item, Elm_Genlist_Scrollto_Type *type)
通过处理提供的旋转事件将项目放入视口中。
查看更多关于旋转事件的信息, https://docs.tizen.org/application/native/guides/ui/efl/rotary-events/
谢谢。