[android-developers] Re: Sending Intent to specific Activity

2009-02-01 Thread Dianne Hackborn
Read the first part of Intent Resolution here: http://code.google.com/android/reference/android/content/Intent.html (on explicit intents). On Fri, Jan 9, 2009 at 8:56 AM, Lutz Schönemann lutz.schoenem...@sit.fraunhofer.de wrote: Hi, I want to create a activity that receives intents modify

[android-developers] Re: Sending Intent to specific Activity

2009-01-31 Thread Rishi
Hi Lutz, When we talk of sending intents from Activity1 to Activity2 , Activity2 should have the intent filter with the intent with which it wants to be invoked. After getting invoked from activity1 , activity2 can further invoke another activity with intent data it wants. You can also use