datahaki
datahaki

Reputation: 610

List of all classes in android sdk

I am used to the java API that lists all classes on all packages. That way, finding a class using the browser search is easy, even if you don't know the package the class belongs to.

I have not been able to locate a similar API view for Android development, which makes navigating through the API arduous for me.

For instance, googles API seems to be package based... Googles Andoid API

Please, can somebody help? Thank you.

Upvotes: 0

Views: 2164

Answers (1)

Marian Paździoch
Marian Paździoch

Reputation: 9103

Here is list of Android SDK packages https://developer.android.com/reference/packages

And here list of classes https://developer.android.com/reference/classes

Upvotes: 2

Related Questions