eSkyGuide.java

public class eSkyGuide extends Activity implements
Button.OnClickListener
{

 public void homepage()
    {
        setContentView(R.layout.homepage);

        flight_schedule=(Button)findViewById(R.id.fschedule);
        flight_schedule.setOnClickListener(this);

        flight_status=(Button)findViewById(R.id.fstatus);
        flight_status.setOnClickListener(this);

        weather=(Button)findViewById(R.id.weather);
        weather.setOnClickListener(this);
}

}


weather.java

public class Weather extends Activity implements
Button.OnClickListener
{


// now i want to call here...... thathomepage method.


}





can any one know about these .
please help in these concepts.


Thanks  in advance.
--~--~---------~--~----~------------~-------~--~----~
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