June 25th, 2011, 02:32 PM
|
#2 (permalink)
|
|
Member
Join Date: Dec 2010
Posts: 187
Device(s):
Thanks: 5
Thanked 22 Times in 18 Posts
|
I'm a Computer Science major with a lot of experience coding Java (I am currently working on a large Java project of my own, in fact). I'll try to read through that page (got a busy life at the moment) and see if I can figure out wtf he's saying.
The one thing all my experience with Java has taught me is that Java sucks. Though the API is completely open, a lot of the things Java has classes for you can write a much faster algorithm yourself. I've written filesaving algorithms (using simple FileOutputStreams) that work maybe two or three times faster than DataOutputStream, and those work another ten times faster by using buffered writes, cutting a file saving operation that used to take 45 seconds down to maybe two seconds.
EDIT: This looks more like a guide for creating apps with the best backward compatibility than anything we can use. It's a guide for developers trying to make their apps compatible with as many devices as possible the best they can, not for people trying to hack an app to run on older Androids.
|
|
|
Last edited by p_025; June 25th, 2011 at 03:35 PM.
|
|