[android-developers] Re: Custom action code problem

2008-08-28 Thread hackbod
On Aug 28, 1:13 am, hilti <[EMAIL PROTECTED]> wrote: >                 Intent intent = new Intent("custom.action.SECOND_ACTION"); Of course that isn't -really- the name you are using for the action, right? You are scoping it to your own personal namespace, correct? --~--~-~--~~-

[android-developers] Re: Custom action code problem

2008-08-28 Thread hilti
Yap, it works. Thanks for your help. On 28 Aug., 11:33, Teo Hong Siang <[EMAIL PROTECTED]> wrote: > Try specifying the CATEGORY_DEFAULT in your intent filter for the > second activity. > > From android.content.Intent: > "Activities will very often need to support the CATEGORY_DEFAULT so > that t

[android-developers] Re: Custom action code problem

2008-08-28 Thread Teo Hong Siang
Try specifying the CATEGORY_DEFAULT in your intent filter for the second activity. >From android.content.Intent: "Activities will very often need to support the CATEGORY_DEFAULT so that they can be found by Context.startActivity()." On Aug 28, 1:13 am, hilti <[EMAIL PROTECTED]> wrote: > Hi > > I