I know there's android's source code. But how to find an implementation or subclass of some specific interfaces or abstract classes, like FragmentManager
? It's annoying and upset when you're digging into source code to find bugs or try to understand how things work but only arrive at interfaces and abstact classes.
Thanks for share.
Update: OK, I find there's a inner class in FragmentManager
that inherits it. But what about others, like context, some services? Maybe google helps sometimes, but what if it can't?
Self conclusion: Official API reference lists public sub-classes. If private or package-private are expected, they are supposed to be in same package or class file.