• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

Are there any Java for android books that don't require you to use an IDE ?

 
Ranch Hand
Posts: 101
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi.
Are there any books like the Head First Java book that require only a text editor to get through It ?
I've found some android development books but they all require the use of an IDE and I think that's going to
hinder my efforts to really understand what I'm doing.
 
Bartender
Posts: 1810
28
jQuery Netbeans IDE Eclipse IDE Firefox Browser MySQL Database Chrome Linux
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not an android developer, but I think the problem you will find is that you need the android emulator which runs as a plug-in in the IDE. If you write and compile the code using a text editor (which is usually a good idea), how are you going to execute it?

Maybe there is a standalone way to do that. I don't know. In any case, I will move this to our android forum where you are more likely to find the answer.
 
Nikolas Nikolaou
Ranch Hand
Posts: 101
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Oh ok. I didn't know that. Thanks for the Info.
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Even if an IDE is HIGHLY recommended to develop for Android, it is possible to develop without an IDE. You need a shell and an editor. In this case, the recommended way to build Android apps is by using Gradle.

But, again, I think you better start with Android Studio. The learning curve should be seen as an investment: it will dramatically accelerate your work in the future.
 
Saloon Keeper
Posts: 26769
190
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I believe that the emulator comes with the Android Developer Kit so an IDE shouldn't be essential. However, I use Eclipse just because it gives me a WYSIWYG designer for the screen templates. I got the impression that recently Eclipse support for the Android developer environment has been reduced, but I'm not certain.

You should be able to generate an Android project using the Maven archetype:generate goal and no IDE at all. And if you change your mind, one of the post-generation goals such as "eclipse:eclipse" can generate the necessary IDE project support files.
 
Rancher
Posts: 4936
38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Maybe there is a standalone way to do that.


Yes, the ADB command can install apks on a running VM. It's well documented in the Android online doc. I use Oracle's VirtualBox to run the Android VM. It's much faster to start ( 10-20 seconds). I got the VMs from Genymotion.
 
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Tim Holloway wrote:I got the impression that recently Eclipse support for the Android developer environment has been reduced, but I'm not certain.


Yup. Google wants to promote Android Studio

@Nikolas Nikolaou
I also recommend you check out Droid Draw I find it very useful for quick UI templating. It does not require any IDE.
 
Greenhorn
Posts: 20
Android Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I see your point but android is still new and rising.
Plus android works and runs in a very different way unlike others.
So with limitations, we must have to deal with IDE's
 
Maneesh Godbole
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ryan Gabriel wrote:I see your point but android is still new and rising.


First commercial Android based phone was launched on October 22, 2008. I would not call Android 'new' after 7 years
 
Just the other day, I was thinking ... about this tiny ad:
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic