Re: [android-developers] unable to respond to intent in an activity

2012-03-04 Thread Mark Murphy
On Sun, Mar 4, 2012 at 4:33 PM, Tom Ratajczak wrote: > Wait with the beer for a moment:) Beer delayed is beer denied. > This is what I am already doing and the > activity is selected as one of many, but how do i process the geo:45.0,34.0 > that the originating activity sends with startActivity()

Re: [android-developers] unable to respond to intent in an activity

2012-03-04 Thread Tom Ratajczak
On Sun, Mar 4, 2012 at 10:19 PM, Mark Murphy wrote: > On Sun, Mar 4, 2012 at 4:13 PM, Tom Ratajczak > wrote: > > I see the difference now, so this explains why the battery power intent > was > > received. But I still don't know how to receive the intent that was sent > > with startActivity. Thank

Re: [android-developers] unable to respond to intent in an activity

2012-03-04 Thread Mark Murphy
On Sun, Mar 4, 2012 at 4:13 PM, Tom Ratajczak wrote: > I see the difference now, so this explains why the battery power intent was > received. But I still don't know how to receive the intent that was sent > with startActivity. Thanks for your help. Step #1: Implement an Activity. Step #2: Set u

Re: [android-developers] unable to respond to intent in an activity

2012-03-04 Thread Tom Ratajczak
On Sun, Mar 4, 2012 at 8:18 PM, Mark Murphy wrote: > On Sun, Mar 4, 2012 at 10:45 AM, Tom Ratajczak > wrote: > > My application is to respond to the following intent > > > >Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("geo: > > 45.0,34.0")); > > > > Filtering in the manifest is s

Re: [android-developers] unable to respond to intent in an activity

2012-03-04 Thread Mark Murphy
On Sun, Mar 4, 2012 at 10:45 AM, Tom Ratajczak wrote: > My application is to respond to the following intent > >        Intent i = new Intent(Intent.ACTION_VIEW,  Uri.parse("geo: > 45.0,34.0")); > > Filtering in the manifest is setup correctly and user is presented > with choice, but once the choi

[android-developers] unable to respond to intent in an activity

2012-03-04 Thread Tom Ratajczak
My application is to respond to the following intent Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("geo: 45.0,34.0")); Filtering in the manifest is setup correctly and user is presented with choice, but once the choice is made the activity does not respond in receiver = new