I have a little problem. I want to start activity but in something other way. I know that
Intent i = new Intent(this, ActivityTwo.class);
Just use....
Intent intent = new Intent().setClassName(activity,"packageName"+"className"); startActivity(intent);