How do I create a home-screen replacement application? Is there any information about the home-screen application available?

Can any application be a home-screen by just registering it with a CATEGORY_HOME intent?

link|improve this question

feedback

2 Answers

up vote 18 down vote accepted

Writing your own homescreen application is possible. It is called the Launcher.

You can get the source code of the default Android Launcher via git.

The project URL is:

https://android.googlesource.com/platform/packages/apps/Launcher2.git

You can get the source code like this.

git clone https://android.googlesource.com/platform/packages/apps/Launcher2.git

That will create a directory called Launcher2 for you. Now you can get cracking and create your custom launcher.

If you need help with using git then checkout git's documentation section.

link|improve this answer
9  
Don't forget to take a look at the source code of ADW Launcher as well: code.google.com/p/adw-launcher-android – benvd Sep 8 '10 at 10:41
+1 ADW Launcher is also a good example. – Octavian Damiean Sep 8 '10 at 10:45
what is that git??they telling me install git, and run. i dont know actual meaning of Git,please help me to understand it...Thanks – Smith Apr 5 '11 at 9:15
@OctavianDamiean hi i really want your help in same Question can u please ? so i will explain my Question to you – Sam_k Nov 7 '11 at 10:53
feedback

You can checkout the official sample code for the Home application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.