I am facing one wiered problem.
I have created 4 intent reciver in my AndroidManifeast.xml file. And I have created 4 class for that and the code is working perfectly. The problem is when ever I launch emulator to lauch application, I can see 4 diffrent acitivities which I have created also along with the main application. How can I solve that.
The code is as follows:
Using xml Syntax Highlighting
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.naag"
- android:versionCode="1"
- android:versionName="1.0.0">
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <activity android:name=".naag"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <!-- Intent for Menu -->
- <activity android:name=".menu"
- android:label="@string/menu">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <!-- Intent for Contact Me -->
- <activity android:name=".Contact"
- android:label="@string/contact">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <!-- Intent for Credits -->
- <activity android:name=".Credits"
- android:label="@string/credit">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <!-- Intent for Level Selection-->
- <activity android:name=".LevelRadio"
- android:label="@string/selectlevel">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- </manifest>
Parsed in 0.007 seconds, using GeSHi 1.0.8.4
And the Image is attaced there.




