没有图标Android应用程序应用程序、图标、Android

2023-09-05 05:01:36 作者:夜微曦

可能重复:   应用程序图标

我的问题很简单。我想创建一个Android应用程序,没有任何图标。照片我的应用程序只需要两个服务,这将在启动时推出。 这可能吗? 我问这个问题,因为我才知道这个程序的短信跟踪代理。这里的链接!而这个程序实际上做这个,所以我认为这是可能的。照片 我安装了这个应用程序在我的三星Galaxy Note有Android版本4.0.3,我只能看到应用程序图标中安装的设置应用程序的列表中,但不是主要的应用程序图标的屏幕。所以请任何人能告诉我怎么做或这样做的任何其他方式。 我的问题是与此相关的旧的问题,但我没有得到我想要的。 我非常新手到这个网站。所以,请咨询我,如果我做错什么。

My question is very straight forward. I want to create an Android app without any icon.My app requires only two services which will be launched at boot up. Is it possible ? I am asking this question because I came to know about this app SMS tracker Agent. Here's a link! And this app actually does this so I think it is possible. I installed this app in my Samsung Galaxy note having Android version 4.0.3 and I can only see app icon in list of application installed in settings but not in main app icon screen. So please any one can tell me how the did or any other way of doing this. My Question is related to this older question but I didn't get what I wanted. I am very newbie to this site. So please advice me if I am doing anything wrong.

推荐答案

是的,这是可能的。有图标显示在设备应用程序的抽屉,你会用你的manifest.xml这个意图过滤器,你可以离开了:

Yes that's possible. To have the icon show up in the device app drawer you would use this intent filter in your manifest.xml which you can just leave out:

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>