質問

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