On Fri, Jul 6, 2012 at 9:36 AM, rayk <raym...@kecklers.com> wrote:
> If I take out the category LAUNCHER the app will not launch.

That is not the activity that is appearing in the chooser. It is your
third activity.

> I read the
> Intent section but can not see what I need to replace it with to get it to
> launch.

That is not the activity that is appearing in the chooser. It is your
third activity.

>   <activity android:name="ItemizedOverlay" >
>       <intent-filter>
>                 <action android:name="android.intent.action.VIEW" />
>                 <category android:name="android.intent.category.DEFAULT" />
>                 <data android:scheme="http" />
>             </intent-filter>
>        </activity>

This activity is claiming to handle all Web links, and hence it will
appear in various choosers. To fix this, delete the <intent-filter>
and start up the activity using an explicit Intent from elsewhere in
your app (e.g., startActivity(new Intent(this,
ItemizedOverlay.class))). Or, tweak the <intent-filter> to be more
specific than claiming to handle all HTTP URLs.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

_The Busy Coder's Guide to Android Development_ Version 3.7 Available!

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to