Click here to Skip to main content
15,891,951 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi.
I have a question. How do we call from one class to another, that's within the same package? I do not want to use intent as it will keep creating a new activity. I'm linking a sensor to a timer. Where the timer would start if there's no movement. Thanks for the help.

public void onSensorChanged(SensorEvent event) 
{
  if (event.values[0] > 0.6 && event.values[1] > 1.6)
  {
    Toast.makeText(getBaseContext(), "Movement is NOT detected.",Toast.LENGTH_SHORT).show();
    startActivity(new Intent(TestingSensor.this, Timer.class));
  }
  else 
    return;
}
Posted
Updated 13-Dec-10 21:33pm
v2
Comments
JF2015 14-Dec-10 3:34am    
Edited to improve code readability.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900