ADL+ 2012-12-13 - Maps API V2 ADL+ 2013-01-24 Maps API v2 part2
Move Google Maps V2 with auto best zoom
We can build LatLngBounds object including certain points, and move GoogleMap to the bounds with auto estimated best zoom. package com.examp...
Set options of Google Maps Android API v2 in XML
So far we set options of Google Maps Android API v2 using java code, we can also set options in XML. Modify layout file, to add options in ...
Create MapFragment and GoogleMap using Java code
In previous exercises, MapFragment and SupportMapFragment are defined in XML of layout file. We can create it using Java code, without XML. ...
keytool error: java.lang.Exception: Keystore file does not exist
If you have a new Android development setup on your system, and it's your first project, and you want to " display the SHA1 (or MD5...
How to get started on Android with AdMob
AdMob: Getting Started on Android
Detect and animate to user location
Last exercise " Implement LocationSource and LocationListener for Google Maps Android API v2 " to detect user location. We can mod...
Android 4: New Features for Application Development
Recently, with the increasing popularity of mobile phones, mobile operating systems have emerged and quickly spread. Now people with smart ...
Rename project after Existing Android Code Into Workspace
It's a tips in using Eclipse. After import Existing Android Code Into Workspace, the project name will be MainActivity, or the name of t...
Implement LocationSource and LocationListener for Google Maps Android API v2
Example to Implement LocationSource and LocationListener for Google Maps Android API v2. package com.example.androidmapsv2; import com.googl...
Display another layout over GoogleMap
This example demonstrate how to place LinearLayout over GoogleMap, using XML. <RelativeLayout xmlns:android="http://schemas.android....
Detect Info Window Click, implements OnInfoWindowClickListener.
To detect user click on Info Window, implements OnInfoWindowClickListener. And setOnInfoWindowClickListener() to register it. Modify from th...
FREE on Kindle: How to Make Android Apps: A Non-Code Guide to Creating Your First Android App
You Are 7 Weeks Away From Making Your First Android App Do you want to create apps but don’t have any programming skills? Do you have a uniq...
Professional Android Open Accessory Programming with Arduino
Learn how to control your home or car from your Android smartphone - air conditioning, lights, entertainment systems, and more! Android Ope...
Android Application Development Cookbook: 93 Recipes for Building Winning Apps
A must-have collection of ready-to-use Android recipes! The popularity of Google Android devices is seemingly unstoppable and the Android 4...
Custom InfoWindowAdapter with dynamic icon
Last exercise demonstrate how to " implement custom InfoWindowAdapter ", with fixed icon defined in XML. We can generate the icon ...
Create custom info contents for GoogleMaps V2, by implementing custom InfoWindowAdapter
Create /res/layout/custom_info_contents.xml to define the layout of our custom info contents. <?xml version="1.0" encoding=...
Implement bouncing marker for Google Maps Android API v2
Example to implement a bouncing marker: //Make the marker bounce final Handler handler = new Handler(); final long...
Google TV Add-on with emulator is available in Android SDK
Google TV SDK Add-on allows developers to create Google TV-specific Android Virtual Devices (AVDs) for the Android emulator. The Google TV A...
Load custom marker on GoogleMap V2
To load custom icon as marker of GoogleMap V2, save the icon in drawable folder. Load it using the code: BitmapDescriptor bitmapDescript...
Change marker color of GoogleMaps V2
To change color of the default marker of Google Maps Android API v2, add .icon(BitmapDescriptor) when create MarkerOptions. BitmapDescript...
UPDATE NOW! Oracle JDK 7u11 released
Oracle releasdd JDK 7u11 to answer the the flaw in Java software integrated with web browsers. This release contains fixes for security vuln...
Oracle is aware of a flaw in Java software integrated with web browsers
Posted at +Oracle : Oracle is aware of a flaw in Java software integrated with web browsers. The flaw is limited to JDK7. It does not exist ...
Create Google Play Badges for your apps in multi-language
Visit here to create your Google Play badges, allow you to promote your app with official branding in your online ads, promotional material...
Ubuntu On A Galaxy Nexus Hands On Review
Turn on Traffic Layer of GoogleMap V2
To turn on/off the traffic layer of GoogleMap, simple call the method setTrafficEnabled(boolean enabled) . Example: myMap.setTrafficEnable...
Enable/Disable various gestures for GoogleMap
To enable/disable various gestures for GoogleMap, call setRotateGesturesEnabled(boolean enabled) , setScrollGesturesEnabled(boolean enabled)...
Display ZoomControls, Compass and MyLocation buttons on GoogleMap.
To enable/disable ZoomControls, Compass and MyLocation buttons on GoogleMap, call the following methods of the UiSettings for GoogleMap. set...
Reminder: Windows 8 Previews will expire SOON!
Just a reminder, if you are using Windows 8 Preview, it will expire soon: Windows 8 Developer Preview and Consumer Preview will expire on J...
Nokia HERE, delivering maps for Apple iPhone, Android and Firefox OS
Nokia is taking its mapping solutions out to the wider world in the form of HERE , offering HERE for iOS for Apple iPhone and iPad users and...
Google Maps Android API v2 example: Draggable Marker
To make the marker draggable: - sets the draggability for the marker to true by calling draggable(true) when new the MarkerOptions. - implem...