What is a OnCreate method in android

后端 未结 5 1966
北恋
北恋 2020-12-08 01:09

I am new to android trying to understand what the below method does

public void onCreate(Bundle savedInstanceState)
{
        super.onCreate(savedInstanceS         


        
5条回答
  •  爱一瞬间的悲伤
    2020-12-08 02:02

    Since the onCreate method is overridden, the super keyword is used to call the onCreate method of the base class. I think

提交回复
热议问题