문제

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