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.
Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main. xml. In the above code, we have taken text view to show on Activity result data.
Obtain a Context
object and use its startActivity()
method:
Context context = getContext();
Intent i = new Intent(context, Screen.class);
context.startActivity(i);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With