Application icon doesn't appear when I uninstall my app

让人想犯罪 __ 提交于 2019-12-11 13:57:50

问题


I dont know a lot of English, but I have a big problem. I install my application and I can see the application icon when I look for it, but when I go to the uninstall menu, or in the notification bar, the icon doesnt appear. Here are some photos of that problem.

https://www.dropbox.com/s/h80w3ztp9ex36rw/2013-12-09%2020.56.03.png https://www.dropbox.com/s/v69il8ai5oinkvm/2013-12-09%2000.44.58.png

I can write my AndroidManifest, it's this:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.Podometro"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name="com.Podometro.HiScreen"
                    android:screenOrientation="portrait"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

         <activity 
             android:name="com.Podometro.Pedometer" 
             android:launchMode="singleTask"
             android:screenOrientation="portrait"
             android:exported="true"
             > 
             </activity>

         <activity android:name="com.Podometro.CrearArchivo" 
                    android:screenOrientation="portrait"> </activity>
         <activity android:name="com.Podometro.Twitear" 
                    android:screenOrientation="portrait"> </activity>
         <activity android:name="com.Podometro.TwitterWebActivity" 
                   android:screenOrientation="portrait"> </activity>
         <activity android:name="com.Podometro.Constants_Settings" > </activity>


          <service android:enabled="true"
                 android:name="com.Podometro.TheService">
        </service>

    </application>
    <uses-sdk android:minSdkVersion="8" />
 <uses-permission android:name="android.permission.INTERNET"/>
 <uses-permission android:name="android.permission.VIBRATE"/>
 <uses-permission android:name="android.permission.WAKE_LOCK" />
</manifest> 

Thanks for your help.


回答1:


I'm not sure what is that uninstaller but I'd make sure to check it doesn't happen with other applications too. Also verify you've got a version of your icon for all standard size versions. (drawable, drawable-hdpi, drawable-ldpi, etc.)

Buena suerte ;)



来源:https://stackoverflow.com/questions/20479574/application-icon-doesnt-appear-when-i-uninstall-my-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!