Unboxing and comparing the Nexus One to the Motorola Droid. Audio is in spanish but you’ll be able to see and tell a lot from my video even if you are an english speaker (use this opportunity to practice your spanish)
Related Posts
Kindle Fire HD Unboxing, First Impressions, Thoughts about iPad 3 and iPad Mini
Welcome to my unboxing of the new Kindle Fire HD. If you don’t know me, I’m an Android product designer and developer of FrostWire for Android, been an Android user for the last 3 years, as a developer I’ve had the opportunity to try lots of different Android phones and tablets and this year I […]
[ANDROID] How to set a custom title View on a DialogPreference extending class.
So you have a FooDialogPreference class which extends DialogPreference, and one of the things you’d like to do to it, is to change the Dialog’s title. DialogPreference happens to be a bit of a bitch, you can’t just call getDialog() and start playing with its features before it is shown because the Dialog object is […]
How to convert Android GPS coordinates into X,Y coordinates.
Without further math bullshit about all the conversion systems, when you have a bunch of Android GPS coordinates (which are compatible with Google Earth and Google Maps), and you want to draw them on a finite 2D plane, here’s what worked for me. [java] int x = (int) ((PLANE_WIDTH/360.0) * (180 + lon)); int y […]