Well, latest question I posted was my first post, so I admit I didn't summarize my question well . So I am going to ask a question again.
override fun onCreate(savedInstanceState: Bundle?) {
setContentView(R.layout.activity_main)
super.onCreate(savedInstanceState)
}
I know onCreate() method in superclass(AppCompactActivity) create Activity before starting it. Then, isn't it necessary for "super.onCreate" to come before the initialization of View(like setConentView)?? But, When I put the superclass method implementation in the far below, it didn't make problem (code working normally), Why???