François
François

Reputation: 11

How to disable android homepage

I use the automatic launch of my application when I turn on my ACER tablet Iconia one (6.0), but the android home page appears before for a few seconds. Is it possible to run the application without showing android homepage ? Regards, François

Upvotes: 1

Views: 165

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006869

Is it possible to run the application without showing android homepage ?

Make your app be the "android homepage", by implementing a MAIN/HOME <intent-filter>:

<intent-filter>
   <action android:name="android.intent.action.MAIN" />
   <category android:name="android.intent.category.HOME"/>
</intent-filter>

Upvotes: 1

Related Questions