Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When adding an activity to an existing Android project, I manually create a new class - is that the best / preferred way? How do others handle that?

share|improve this question
Consider changing your accepted answer... The best one has way more votes than the one you originally accepted – colithium Nov 13 '11 at 2:00
Consider accepting the answer by inankupeli – Mr_and_Mrs_D Mar 3 at 21:49

5 Answers

up vote 263 down vote accepted

You can use the "New Class" dialog, but that leaves other steps you need to do by hand (e.g. adding an entry to the manifest file). If you want those steps to be automated, you can create the activity via the manifest editor like this:

  1. Double click on AndroidManifest.xml in the package explorer.
  2. Click on the "Application" tab of the manifest editor
  3. Click on "Add.." under the "Application Nodes" heading (bottom left of the screen)
  4. Choose Activity from the list in the dialog that pops up (if you have the option, you want to create a new top-level element)
  5. Click on the "Name*" link under the "Attributes for" header (bottom right of the window) to create a class for the new activity.

When you click Finish from the new class dialog, it'll take you to your new activity class so you can start coding.

Five steps might seem a lot, but I'm just trying to be extra detailed here so that it's clear. It's pretty quick when you actually do it.

share|improve this answer
5  
I'm surprised this isn't the marked solution. Thanks for sharing! – Amr Bekhit May 31 '11 at 16:23
yeah - this is exactly the answer. thanks! – kolosy Jun 29 '11 at 20:42
this needs to be the answer, the other solution in incorrect. This would be proper protocol for the build of android. – Keeano Martin Oct 24 '11 at 16:00
11  
One caveat is that you must remember to prepend the "." to your Activitiy name, or you will end up with all sorts of nonsensical err msgs. – Clay Shannon Dec 3 '11 at 21:59
1  
Like this: Intent intent = new Intent(OldActivity.this, NewActivity.class); startActivity(intent); No need to shout ;) – user460847 Jul 16 '12 at 18:31
show 5 more comments

It is now much easier to do this in Eclipse now. Just right click on the package that will contain your new activity. New -> Other -> (Under Android tab) Android Activity.

And that's all. Your new activity is automatically added to the manifest file as well.

share|improve this answer
1  
you have to add explicitly in manifest file about your activity information .It is not getting added automatically. – Akshay Aug 13 '12 at 13:18
4  
After New -> Other -> Android Activity -> Blank Activity and giving it a unique name, at next step you will see eclipse shows you a "changes to be performed" list. In this list you can see manifest file, strings.xml etc already checked. So, unless you uncheck them, it is added automatically – inankupeli Aug 16 '12 at 8:55
What if you want the activity to be created in a specific package ? – Mr_and_Mrs_D Mar 3 at 15:13

I just use the "New Class" dialog in Eclipse and set the base class as Activity. I'm not aware of any other way to do this. What other method would you expect to be available?

share|improve this answer
Just curious if maybe there was a plugin that automated some of it or provided a step-by-step wizard. – Eno Feb 25 '10 at 22:50

The R.* classes are generated dynamically. I leave the "Build automatically" option on in the Project menu so that mine R.* classes are always up-to-date.

Additionally, when creating new Activities, I copy and rename old ones, especially if they are similar to the new Activity that I need because Eclipse renames everything for you.

Otherwise, as others have said, the File->New->Class command works well and will build your file for you including templates for required methods based on your class, its inheritance and interfaces.

share|improve this answer

There is no tool, that I know of, which is used specifically create activity classes. Just using the 'New Class' option under Eclipse and setting the base class to 'Activity'.

Thought here is a wizard like tool when creating/editing the xml layout that are used by an activity. To use this tool to create a xml layout use the option under 'New' of 'Android XML File'. This tool will allow you to create some of the basic layout of the view.

share|improve this answer
1  
Looks like IntelliJ IDEA has a wizard for creating activities - see jetbrains.com/idea/features/google_android.html – Eno Feb 13 '12 at 23:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.