Question

I want to run my android tablet as kiosk. I want My application to start immediately after boot and remain always on Top. Mean User can not close application or view menu or other applications unless closing our app from given log-out option.

I am using android sdk with Eclipse n Java.

Était-ce utile?

La solution

put this in manifest file -

<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>
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top