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);
Class c =Class.forName("YOUR STRING" ); Intent intent = new Intent(FirstActivity.this, c); startActivity(intent);