Eclipse Create Android Application
I am trying create an android application like this : http://developer.android.com/training/basics/firstapp/creating-project.html But when I create the application the src folder i
Solution 1:
You need to create a new activity. To do this,
Right click src folder -> new -> other -> Android -> Android Activity
For more you can look at this SO question : Best way to add Activity to an Android project in Eclipse? or this Blog post: How to create a new activity in Android?
Solution 2:
The API of the project is consisting of what version of android you are targetting. If you want to optimize and running it Android 4.4 you have to choose 19. I think that 23 is the newest one and if you want to develop for Android L with Material Design you have to make some updates. Check that Link - it's describing Android APIs.
Post a Comment for "Eclipse Create Android Application"