2014-12-08

practice final problem #1 CS175 .

For Android:

Intent myIntent = new Intent(view.getContext(), MyClass.class); startActivity(myIntent);

This starts an activity in the current context. We create an activity by calling startActivity

Brian Guilardi Dima Dimov Edgar Reyes

For Android: Intent myIntent = new Intent(view.getContext(), MyClass.class); startActivity(myIntent); This starts an activity in the current context. We create an activity by calling startActivity Brian Guilardi Dima Dimov Edgar Reyes
2014-12-15

-- practice final problem #1 CS175

For Android don't forget to define the new Activity in AndroidManifest.xml

For Android don't forget to define the new Activity in AndroidManifest.xml
X