In Eclipse you just clicked the new button and select the android activity to add new activity. But Android Studio is a bit diferent; I couldn\'t find out how to add new act
I think natually do it is straightforward, whether Intellij IDEA or Android Studio, I always click new Java class menu, and then typing the class name, press Enter to create. after that, I manually typing "extends Activity" in the class file, and then import the class by shortcut key. finally, I also manually override the onCreate() method and invoke the setContentView() method.