val name: String init{ this.name = name } fun goto(test : String){ println("$name reached $test.¥n"); } } //インスタンス val car = Car(“Hiace") car.goto(“the park")
・onStart()…Activityが見えるようになったとき呼び出される ・onResume()…操作を受け付け始めるとき呼び出される ・onPause()…Activityが停止する前などに呼び出される ・onStop()…Activityがユーザーに表示されなくなったときに 呼び出される ・onDestroy()…Activityが破棄される際に呼び出される Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.