Android onCreate流程

时间:2016-04-25 08:01:44

标签: android onclick onclicklistener

我刚接触Android开发并且在我的第一个应用程序上工作了几天。 在我的活动中,在onCreate函数中我进行了2次函数调用,2个函数中的每一个都为不同的按钮提供了不同的OnClickListener。

一切正常,我的问题是为什么?

我的意思是,如果应用程序以并行方式运行,两个侦听器的功能是如何同时“工作”的?在我的脑海中,我认为一旦应用程序到达OnclickListener,它将停止并等待buttonClick事件,但我可以看到我可以点击button1然后发生了一些事情然后我点击了Button2并发生了其他事情(因为它应该)

一般来说,我只想解释一下应用程序的工作方式(流程)/处理侦听器和点击事件的功能。

谢谢你, 诺姆

1 个答案:

答案 0 :(得分:0)

I totally understand what you mean.
button.setOnClickListener(this) means this button just tells the activity that it has a click event. The app won't pause or wait until the button event is executed. when different widget is clicked, it's own click event will be executed.