When in debug mode I get a source not found message for the android stuff. I am using Andorid-10 to match my device. In the 'android-sdk\sources' I have android-14 and Android-15. How and where can I get the Andorid-10 source tree. I have looked at http://developer.android.com/sdk/android-2.3.3.html but I can't find a source to download.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
I use grepcode to browse and download android source code. You can find a jar with android 2.3 here. You should also be able to download the source code from https://github.com/android and http://code.google.com/p/android/.
If I understand your question correctly, you are looking to have the Android-10 SDK available to build code against for writing Java applications. With that assumption, the way to get Android-10 support is to use:
This will load the Android SDK and AVD Manager. Use the 'Available packages' menu selection and proceed to the Android-10 SDK download.
pick your preferred version, just a note: the emulator image of
platform-10
is android 2.3.4 (look atadb shell getprop
)now you can attach the jar to eclipse
I was looking for the source of
android.widget.ArrayAdapter
in 2.3.x too.I already had this cloned:
so that running this:
is a "fast" jump back in time, and can be attached to Eclipse as
The best answer for me is going to http://code.google.com/p/adt-addons/ and downloading the Eclipse plugin for Android Sources. To get the plugin, in Eclipse select the 'help' button and select 'install new software'. Then give it http://adt-addons.googlecode.com/svn/trunk/source/com.android.ide.eclipse.source.update/ It is a big down load, but after Eclipse has all the source code.
Thanks for your help
Cliff