• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps custom launcher/ homescreen

I'm not going to make this too complicated so what I want to do is make it so that when I click the home button my application runs/ the dialog with list of launchers appear with my app listed.I think I just need to make an intent that is the same with the launcher in the manifest.xml code but I'm not sure what it is. I found this : Pro Android 3 - Satya Komatineni, Dave MacLean, Sayed Hashimi - Google Books.

But I cant find out how to apply.please help..

Have mercy on me if this is the wrong place to post this:cool:
 
I got it working,hell yeah!!!

I put this in manifest

<activity android:label="@string/app_name" android:name=".myhomescreen" > <intent-filter > <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.HOME" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity>
 
Back
Top Bottom