Sure. Here is my manifest file: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.tinyang.birdtracker" android:versionCode="1" android:versionName="1.0"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.CAMERA"/> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".MainMenu" 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=".FieldGuide" 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=".TakePic" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> <uses-sdk android:minSdkVersion="2" /> </manifest>
-----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Sean Hodges Sent: Tuesday, August 18, 2009 3:17 AM To: [email protected] Subject: [android-beginners] Re: 3 icons for one app Can you post up your manifest file? On Tue, Aug 18, 2009 at 2:41 AM, tinyang<[email protected]> wrote: > I am developing an app and so far it has 3 complete acticities. For > some reason, everytime I install it and run it in my emulator, it > creates an icon for each activity instead of creating only one > activity for the app. Is this because I have intents in my manifest > for each activity? Can anyone advise me as to why this is happening and how to fix it? Thanks. > > -- > J > P Please don't print this e-mail unless you really need to. > > > > No virus found in this incoming message. Checked by AVG - http://www.avg.com Version: 8.0.169 / Virus Database: 270.13.49/2293 - Release Date: 8/17/2009 6:04 PM --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

