2013-06-03 18 views
0

我的圖標包沒有出現在發射器中。我把它變成了一個iconpack模板(所以它有更多的信息,比如關於開發部分等),但不再顯示在發射器中。有什麼建議麼?這是我的清單:圖標包沒有出現在發射器中

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.slpcatalyst.flushlens" 
android:versionCode="1" 
android:versionName="1" > <!-- android:versionCode="1" +1 with every update! android:versionName="1" Whatever you  like--> 

<!-- Wallpaper --> 


<!-- Screen --> 
<supports-screens android:anyDensity="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:resizeable="true" /> 


<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /> 

<uses-permission android:name="android.permission.SET_WALLPAPER"> 
</uses-permission> 
<!-- Main Activity --> 
<application 
android:icon="@drawable/icon" 
android:label="@string/theme_title" 
android:allowBackup="true" 
android:theme="@android:style/Theme.NoTitleBar"  
> 

<activity 
android:name="com.slpcatalyst.flushlens.MainActivity" 
android:label="@string/theme_title" > 

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

<!-- Other Activites -->   
<activity 
android:name=".AboutDev" 
/> 

<!-- ADW/Nova/Holo --> 
<intent-filter> 
<action android:name="android.intent.action.MAIN" /> 
<action android:name="org.adw.launcher.THEMES" /> 
<category android:name="android.intent.category.DEFAULT" /> 
</intent-filter> 

<intent-filter> 
<action android:name="org.adw.launcher.icons.ACTION_PICK_ICON" /> 
<category android:name="android.intent.category.DEFAULT" /> 
</intent-filter> 

<!-- Go/Nova --> 
<intent-filter> 
<action android:name="android.intent.action.MAIN" /> 
<action android:name="com.gau.go.launcherex.theme" /> 
<category android:name="android.intent.category.DEFAULT" /> 
</intent-filter> 

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

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

<!-- LauncherPro/Holo --> 
<intent-filter> 
<action android:name="android.intent.action.MAIN" /> 
<category android:name="com.fede.launcher.THEME_ICONPACK" /> 
</intent-filter> 

<!-- Apex --> 
<intent-filter> 
<action android:name="android.intent.action.MAIN" /> 
<category android:name="com.anddoes.launcher.THEME" /> 
</intent-filter> 

</application> 

</manifest>  

回答

0

您的清單的意圖過濾器不是任何活動標記的一部分。儘管發射器通常忽略活動本身,但它仍然是必需的,因爲這是系統查詢主題的方式。

在活動標籤下包含intent-filter。

<activity android:name=".AboutDev" > 
    <intent-filter> 
     <action android:name="android.intent.action.MAIN" /> 
     <action android:name="com.gau.go.launcherex.theme" /> 
     <category android:name="android.intent.category.DEFAULT" /> 
    </intent-filter> 
</activity>