Context: “This is an abstract class whose implementation is provided by the Android system”
I was thinking of deriving it to include some handy methods, but I’m not sure what to make of the above line. Any thoughts?
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.
The problem is that things like
Activityare indirect subclasses–they won’t see your additional functionality.If your use is isolated and that’s okay, then it doesn’t matter–just something to be aware of, which sounds like it’d reduce the effectiveness of extending at that level, considering how much stuff extends it.