在没有手势生成器的情况下添加手势

发布于 2024-12-10 20:09:50 字数 109 浏览 0 评论 0 原文

我正在开发基于手势的应用程序启动器。我需要将自定义手势从应用程序添加到手势库。我尝试了使用手势生成器的方法并将其复制到 res/raw,它有效。但我需要通过我的应用程序添加更多手势添加手势菜单..help

I'm working on a Gesture based application launcher.I need to add custom gestures from the application to the gesture library. I tried the method with Gesture builder and copying it to res/raw, It worked. But i need to add more Gestures through my applications add gesture menu..help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光与爱终年不遇 2024-12-17 20:09:50

我不确定你想要什么,但如果你需要保留和修改 GestureLibrary ,你可以在文件系统中读取和写入它,如下所示:

final String fileName = "gestures";
final String dir = Environment.getExternalStorageDirectory();
final File storeFile = new File(dir, fileName);
final GestureLibrary gesturelib = GestureLibraries.fromFile(storeFile);

可以从 GestureBuilder 示例(抱歉,我只找到了这个源,但它复制了众所周知的示例,并更改了变量名称)并在 操作方法

或者你问了什么手势?

I'm not sure what you want, but if you need keep and modify GestureLibrary you can read and write it at filesystem like this:

final String fileName = "gestures";
final String dir = Environment.getExternalStorageDirectory();
final File storeFile = new File(dir, fileName);
final GestureLibrary gesturelib = GestureLibraries.fromFile(storeFile);

Code of creating gestures you can get from GestureBuilder example (Sorry, I found only this source, but it copy well-known example with changed names of variables) and read about in how-to.

Or about what gestures you asked?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文