开发者

open application on install android

开发者 https://www.devze.com 2023-03-14 18:56 出处:网络
I am making an application but i don\'t want it to be on the Home Screen as a Launcher icon.It holds Background Service.

I am making an application but i don't want it to be on the Home Screen as a Launcher icon. It holds Background Service.

Is it possible that when the user install the ap开发者_如何学Goplication it opens the screen automatically so that user could enter the Pin Code or password? But that does not need to be on the launcher icon?

Please Friends Guide


Its possible man.. Just remove intent filter tag under tag activity in the manifest file. Declare activity as listed below

<activity android:name=".CallIntents"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
0

精彩评论

暂无评论...
验证码 换一张
取 消