سؤال

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