这里我们只关注一句话:This is where you should do all of your normal static set up.其中我们只关注normal static,normal:常规的.通常的.一般的 . static:静态的,不变的 onCreate( )方法是android应用程序中最常见的方法之一,那么,我们在使用onCreate()方法的时候应该注意哪些问题呢? onCreate()函数是在activity初始化的时候调用的,通常情况下,我们需要在onCreate(…
android开发之onCreate( )方法详解 onCreate( )方法是android应用程序中最常见的方法之一,那么,我们在使用onCreate()方法的时候应该注意哪些问题呢? 先看看Google Android Developers官网上的解释: onCreate(Bundle) is where you initialize your activity. Most importantly, here you will usually call setContentView(int…