super就是调用父类的属性或者方法,反之this就是调用本类中的属性和方法
Keep in mind that whenever you override a method, you first want to make a call tothe original method provided by the parent. That’s why we have a super.onCreate()call here
extends哪个类,super就是指那个类了。