How to start one activity from another View (another activity View)
For example,
public class CorrectSmoothGloflo extends Activity {
.......................
setContentView(new Panel(this));
}
public class Panel extends View {
//This view class contains some drawable operation
// Here i want to start another Activity like this
Intent i=new Intent(CorrectSmoothGloflo.this,Screen.class);
startActivity(i);
}
I cant do this operation. Because this is the View, that will not work, because View does not have startActivity()
. How to implement this? please give some guidelines.