I want to create an activity dynamically. Something like:
Activity a = new Activity();
Is it possible ? Do I need a special permission ? Or
are you trying to start an activity?
use context.startActivity(intent); where the intent defines what activity you want to start.