tags:

views:

13

answers:

1

how can i improve the performance of simultaneous processes agains the time and space in androied?

A: 

In android Activities are managed by using tintent. Here is the sample code how u can create and use Intent

Intent intent = new Intent(Mainactivity.this, secondactivity .class) start activity(intent);

By this u will be able to move from one to other activity.

Rakesh Gondaliya