0

Such as when I use the ArrayAdapter class, I want to know what is be done in the class. Sometimes I want to go the source code to find answer. So, my question is where can get the source code ?

Kara
  • 6,115
  • 16
  • 50
  • 57
JackeyChan
  • 1,871
  • 2
  • 13
  • 6
  • Search for 'android source' on google... the first result is what you want. – Sam Dufel Feb 12 '11 at 08:12
  • **Similar of [Finding Android source code](http://stackoverflow.com/questions/3673468/finding-android-source-code) and [Where can I browse Android source code on-line?](http://stackoverflow.com/questions/449763/where-can-i-browse-android-source-code-on-line)** – Vikas Patidar Feb 12 '11 at 08:15

3 Answers3

2

http://source.android.com/source/index.html

xandy
  • 27,357
  • 8
  • 59
  • 64
0

https://android.googlesource.com/platform/frameworks/base/+/froyo-release/core/java/android/widget/ArrayAdapter.java

is the link for ArrayAdapter used in the latest Froyo release from Googles open source repository. You can use the navigation links on that page to get to the other parts of the available source code and other releases of Android.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Al Sutton
  • 3,904
  • 1
  • 22
  • 17