处理 UI 事件的最佳实践
我已将 UI 事件的所有绑定代码放在 OnCreate() 上。它使我的 OnCreate() 变得巨大。
在 android 中是否有实现 UI 事件的模式?我可以在 View xml 文件中添加方法,然后将所有处理程序代码放在其他地方吗?
简而言之,我想我问如何使用 android 应用程序代码实现 MVVM 模式?
I have put the all the binding code for UI events on OnCreate(). It has made my OnCreate() huge.
Is there pattern around implementing UI events in android ? Can I add methods in View xml file and then I can put all the handler code somewhere else.
In a nutshell , I think I am asking how can I implement MVVM pattern with android app code ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我所做的事情:
我想这仍然是相当基础的,因为我还没有太多使用 Java 的经验。
Stuff that I do:
I guess this is still quite basic as I haven't had much experience with Java yet.
在 1.6 及更高版本中,您可以指定 onClick 方法 在您的布局 XML 文件 中删除一些多余内容。我通常只是将其全部隐藏在调用 onCreate 方法的 initUi() 方法中。这样至少 onCreate 更容易阅读。
In 1.6 and later you can specify onClick methods in your layout XML file to trim a bit of the fat. I generally just hide it all away in a initUi() method that I have my onCreate method call. This way at least the onCreate is easier to read.
对此已有很多好的答案。 :)
如果您使用的是 Android 1.6 或更高版本,您可能会发现新的 fragments API 有助于将您的活动组织和划分为多个逻辑单元。
Lots of good answers to this already. :)
If you're using Android 1.6 or later you might find the new fragments API helpful for organizing and partitioning your activities into several logical units.
onCreate 通常是调用 setContentView 和设置侦听器的最佳位置,但处理用户交互的代码通常位于 onClick、onTouch、onKey 等例程中。
也许如果您发布代码我们可以看到您做了什么?
onCreate is usually the best place for calling setContentView and setting up listeners, but the code for handling the user interractions normally goes in onClick, onTouch, onKey etc. routines.
Maybe if you posted your code we could see what you've done?