To start an Activity you need an Intent, like:
Intent i = new Intent(context, class)
So to fill in the context parameter, a couple of optio
You do it like this....
Intent intent = new Intent(); intent.setClass(MainActivity.this, SecondActivity.class); startActivity(intent);