我已经读过,在活动的早期调用setContentView()很重要,因为它构建了可能被onCreate()中的后续代码操纵的视图对象.
就生命周期而言,只要调用setContentView(),视图就会被绘制到屏幕上,或者它是否允许onCreate()函数在视图对象中构建/填充信息,并等待在onCreate之后实际绘制它( )完成?
谢谢!
解决方法
does the view get drawn to screen as
soon as setContentView() is called
没有.
or does it allow the onCreate()
function to build/populate the
information in the view objects,and
wait to actually draw it after
onCreate() completes?
是. View对象是作为setContentView()的一部分立即创建的.但是,所有绘制操作(来自onCreate()或其他任何地方)实际上都会将消息放在主应用程序线程所处理的消息队列中.