简体   繁体   中英

How to remove application icon from launcher (AIR For Android)?

How to remove application icon from launcher like this -> http://www.helloandroid.com/tutorials/removing-app-icon-launcher

My application was developed by flash to make AIR Application for Android

I tried to define it in myApp-app.xml

<android>
<manifestAdditions>
<![CDATA[
<manifest>
<application>
<activity>
</activity>
</application> 
</manifest>
]]>
</manifestAdditions>
</android>

But it did not work. It said Parse error, There is a problem parsing the package.

只是不要在其intent-filter为你的活动提供<category android:name="android.intent.category.LAUNCHER" /> ,它不会在启动器中显示图标

打开名为AndroidManifest的文件并在上一个答案中找到Waqas发布的行,然后删除该行,然后再次保存并构建项目,您现在应该可以安装它(先删除所有旧安装)而不显示图标在发射器中。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM