Looking at various pages in the Android docs, some of them list “Known Indirect Subclasses”. What does this mean?
Share
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.
For an interface, it’s a list of classes that implement the interface.
For a class, it’s a list of classes that derive from the class, but indirectly (ie., the class in the list is derived from some class that itself derives from the class being documented directly or indirectly).
So the
android.view.ViewGroupderives directly fromandroid.view.Viewand indirectly fromjava.lang.Object:Since interfaces can only be implemented, not directly derived from, a class that implements an interface is always considered to be ‘indirectly derived’ from the interface.