0
Is "class" in java a bit like "Activity" on Android ?
Is "class" in java a bit like "Activity" on Android ? I program Android applications and I'd like to know if "class" is a bit like "Activity".
1 Réponse
+ 7
Activity is itself a class, and through the developers documentation we know that it is a direct subclass of ContextThemeWrapper class and also a superclass to many other activity classes.
PS. Activity is not like a class, it IS a class.