Question

I am creating an android that acts as a media center. I would like to modify the android home screen. What I want is a customized home screen displaying only my application on booting and never display the default android menu other menu buttons or menu drawer that android has. is it possible.

I got a few links: How can I create a custom home-screen replacement application for Android?

But is it possible to get what i want please help

Was it helpful?

Solution

Yes, you can definitely create a home screen replacement. To do that, your app must have an activity with android.intent.category.HOME in its filters (in AndroidManifest.xml). That's how the system knows which application will display the home screen... For more info:

http://developer.android.com/guide/topics/intents/intents-filters.html

(Search for android.intent.category.HOME to go straight to the point)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top