I am currently writing an Android App using Android Studio 1.2. However, i cannot find MainActivity.java file in it.
Hope someone can help me out.
Thanks in advance.
Regards, Al
I am currently writing an Android App using Android Studio 1.2. However, i cannot find MainActivity.java file in it.
Hope someone can help me out.
Thanks in advance.
Regards, Al
I have Android Studio 1.2 too. In the left side:
app
, then java
.com.username.project
. MainActivity.java
.Its not necessary that your file is named MainActivity.java. That is the default name. If you created the Java file with another name while making the project then that will be your main Activity file. It will have the name you gave while making the project.
Otherwise just create a new activity and enter its name in the Manifest file to make it the main activity.
When you create new project select Blank Activity. MainActivity file is in Android -> app -> java -> your.package.name
Inside of android folder navigate to
app --> src --> java --> com --> "your app name"