What is Activity base class: java.lang.Object or android.content.Context?
The class overview is not clear to me (see the image please).

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In Java every class has an
Objectas a superclass (You can also have more information here).Contextis a Java class hence it hasObjectat the root of its inheritance tree hierarchy.Contextis a class that holds information about an application environment as described in the official documentation, andActivityhas it in its inheritance tree.