[android-developers] Re: Interaction between activities

2011-08-01 Thread Chris
You need to have a reference to the other activity, from which you would call your second (or third) activity's method to update the coordinates For example, your second activity could have a static method to return the component/widget or entire activity. SecondActivity.java

Re: [android-developers] Re: Interaction between activities

2011-08-01 Thread TreKing
On Fri, Jul 29, 2011 at 5:19 PM, Chris chris.sim...@gmail.com wrote: You need to have a reference to the other activity, from which you would call your second (or third) activity's method to update the coordinates You neither need to nor should you do this. For example, your second activity