Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
There was some sample codes in the resource section, explaining some examples, that now are gone.
i.e http://developer.android.com/resources/samples/TicTacToeMain/index.html
when click on them it takes you to http://developer.android.com/tools/samples/index.html
any help regarding this ?
EDITED:
Issue >>> http://code.google.com/p/android/issues/detail?id=33495
What you can do is download the Samples from this link http://developer.android.com/tools/samples/index.html and then follow these steps to get it running on Eclipse:
File ->New -> Android Project -> Create Project from existing sample -> Select the version(for which you have downloaded the Samples) -> Select the Sample.
In this way you can import the sample reference program provided by android and it will help you in getting good hold of its API's.
If you are looking for an Tic Toe Tutorial this series of tutorial may help you to follow http://www.androiddom.com/2011/05/introducing-tic-tac-toe-tutorial.html
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
As you can see in the screenshot above when I try to add new android project in eclipse idea, I go to File->Import but I didn't find Android import source to select.
Thanks
It's seems you have an eclipse idea without android adt bundle, you must add android adt bundle to your eclipse idea to able create android project using it.
to doing this please read this tutorial.
because of adding adt bundle is very difficult, I suggest you use android studio, an professional intelliJ-based idea for developing android applications. it's have every thing you need for android developing.
you can download it from here
good luck!
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm really new to this and I don't have any idea how to do this: how do you get the whole source code from this project ?
Please tell me because i can't find the download button. I go to the download tab and it's not there.
Thanks.
Click the "Checkout" link under the "Source" tab in the menu.
There, you'll get a Mercurial command you can execute in your shell:
hg clone https://code.google.com/p/andenginelivewallpaperextensionexample/
See also:
Mercurial Beginner's Guides
Where can I find a good Eclipse Mercurial Plugin?
Click on the source tab
Here is the whole command that you can use to download the source of the project:
hg clone https://code.google.com/p/andenginelivewallpaperextensionexample/
hg is a tool that comes with Mercurial, you need Mercurial to get that repository.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
i want to downloaad the .zip source code files for mytracks opensource app for android but find no download link and am only able to create clone from http://code.google.com/p/mytracks/
Please tell me or send me a link for the source code for mytracks in .zip format ?
If the developer has not provided a source archive, then you'll have to generate one yourself.
However, you can still easily get the source code by setting up and configuring Mercurial, and then executing the following in the command line:
hg clone https://code.google.com/p/mytracks/
This will download the source code to your current working directory.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I need to customize the android.widget.Gallery. Where can I download the source code?
Here it is:
http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/2.1_r2/android/widget/Gallery.java
I like GrepCode most because it's really convenience to browser Android source code online, as well as reference others class.
Here's the link to the latest version of the android.widget package:
https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/widget/
You can find the source to Gallery.java there. Of
course you can also check out the whole source code as well.
You can find it here
In linux or mac you may download the whole source. see here
You can find it here
Google Code Search is such an underused resource. Enjoy it.
You will likely need other files from the source code as well.
Also, make sure to document the changes you make or you will face a hell of a challenge when you want to update to a new version of the Gallery.
Here is the list of Git repos: https://android.googlesource.com
It's a good idea to check this guide out: http://source.android.com/source/downloading.html
And here is the actual class:
https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/widget/Gallery.java
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
Where do I start to learn and work with android?
What are all the things I need to do?
How start work with android, I need proper guide?
There are a ton of resources available here (Android developer center resources) and the quickstart guide for the sdk is also helpful to getting up and running.
Just poking around Android developer center and some of the other android development related sites should be a great place to start. Particularly in tutorial sections like the Hello World tutorial.
where do i start learn and work with
android?
The place to start from is developer.android.com. Begin by saying Hello
Here, I have posted the links I found useful for learning Android.
Good Luck
Read the Android developer's guide.