Hey everyone! Im trying to add a second activity to my android project, but im not sure how to add the activity files exactly?
Ive added a class here "Name/Scr/PackageName/MyClassHere" but Im not sure if that the correct thing to do or place to put it, because there isnt a XML file either.
Im using this code to open a new screen, http://learnandroid.blogspot.com/2008/01/opening-new-screen-in-android.html And I get 2 error's.
1 at runtimeon this line:
Intent i = new Intent(Coinparison.this, ResultsScreen.class);
it says it cant find my activity.
And the other error here setContentView(R.layout.ResultsScreen);
which says "ResultsScreen" cannot be resolved.
Not sure whats wrong, but any help is great! :)
There is a wizard in eclipse now for adding activities, just right click on your project, go to new -> other -> android -> Android Activity
This will create the class, layout and manifest entry.
Here is a wizard in Android Studio now for adding New Activity, just right click on your project, go to new -> Application Name ->Select Phone and Tablet -> Select Minimum API Level->Next->Blank Activity->Next->Activity Name->Next-> Finish
This will create the class, layout and manifest entry.
i think u need add this activity in manifest file like this
see link again and find this : //AndroidManifest.xml there u can see text which writed in bold mode
Answer for Error in """
setContentView(R.layout.ResultsScreen);
which says "ResultsScreen
" cannot be resolved """Go to
second.java
(Related to second activity) file and import missing classes.In Eclipse, press Ctrl + Shift + O to import missing classes (Cmd + Shift + O on Mac).
Add your activity to AndroidManifest.xml