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

I'm starting down the road of Android Development.

At this point I'm looking for some insight from other developers who have been doing 'droid development and have some experience to share with someone who is just starting out. This can be anything from API to AVM to IDE.

Any unexpected things come up while building your apps? Any tips for project layout or organization that help facilitate the deployment process to the Android AppStore? Any patterns which specifically helped in a particular situation?

Even links to great blogs or sample apps and resources beyond those which you can grab from Google Code would be appreciated.

share|improve this question
2  
Community wiki this. – David Berger Jan 19 '10 at 16:51
2  
Anybody else got anything to add? – Mat Nadrofsky Mar 11 '10 at 18:38
Does anyone have any suggestions for speeding up the debugging process in Eclipse? It takes an age everytime to boot up the emulator - is there a way to speed this up? – MalcomTucker Jul 22 '10 at 9:03
3  
@MalcomTucker: You do not need to reboot the emulator every time that you run the package. If you leave it open the the emulator will be updated with the new version of your app when you hit run automatically. Also, if you use snapshots of the emulator in the toolkit settings then emulator load time is much, much faster. Finally, earlier versions of the emulator run faster so test on the earliest version of the emulator that you can. – Robert Massaioli Mar 28 '11 at 4:38
Check this: 10 amazing Android development tips – Paresh Mayani May 1 '12 at 4:32

7 Answers

up vote 11 down vote accepted

Read (and re-read) the application fundamentals doc. It may not make complete sense until you have some experience, but it's a good high-level overview. Also, try to understand why the APIs (and platform) works the way it does and don't fight against it :)

share|improve this answer
+1 for mentioning App fundamentals doc. :) – Funkyidol Jan 21 '10 at 4:27
  1. Pay particular attention to loading of data on the UI. Learn how to use AsyncTask and how to separate UI threads form the application threads to avoid application blocking and unexpected errors.

  2. Keep in mind the basic OOPS and MVC concepts and apply them to your application as much as possible to keep your application structure modularized for both big and small applications. It saves a lot of head ache during later stages of app development.

  3. Experiment with your layout, custom UI components and get your hands real dirty with the layout.xml. The more experience you have in these the better.

share|improve this answer
1  
+1 - Awesome. Solid insight. Thanks! – Mat Nadrofsky Jan 21 '10 at 14:03

Plan for interrupts and worry about state. Don't expect any of your use cases to always be carried out from start to finish all at once.

share|improve this answer

If you use SD card to store data don't forget that sometimes users unmount SD from the device to mount it to the PC. At this moment SD becomes unavailable and your application should handle that correctly.

share|improve this answer

Not sure if this is much of an insight, but I was able to have my first Android application up and running using ADT in Eclipse within an hour. Using the emulator is easy (although CPU intensive on my MacBook pro). Connecting a physical device is also straightforward, after which you can run and debug on the device. Only 'gotcha' was that you have to enable the 'USB-debugging' option on the phone.

share|improve this answer
Good to know about the USB debugging option. :) – Mat Nadrofsky Jan 19 '10 at 18:17

Eclipse can get really slow for me w.r.t android dev (try a control-space on the EditText method) I have done more and more code typing on Emacs while still using a bit of a mix with Eclipse, I would advise to read this blog post as a starting point to write code for Android using an alternative Text Editor (ie: no IDE) :

http://gregorygrubbs.com/development/tips-on-android-development-using-emacs/

share|improve this answer
I've had Eclipse do that to me too. Code completion taking forever... – Mat Nadrofsky Apr 14 '11 at 13:56

If you want to customize any view extend that view and override its ondraw() method to draw that view as you want.

Always check the availability of overrided methods for views, because if it is not available for your targeted api your application will simply skip it and your flow will crash.

share|improve this answer

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.