Вопрос

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.

Это было полезно?

Решение

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>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top