Load GoogleMap Demo Description.
Here is the demo for loading google maps in android. You can achieve this by using GoogleMap. You can change mapview to satellite hybrid and normal view. You just need to create fragment in layout xml:
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
For getting map view in class file :
GoogleMap googleMap = ((SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map)).getMap();
For loading google maps in the app you need to create Google map api key for creating that you need to follow steps :
1. Go to google api console.
2. Create New project
3. Fill Consect screen.
4. Turn on the Google Map API.
5. Create client ID by provilding SHA5 and package name.
6. You can find SHA from eclipse : Window > Preference > Android > Build.
Thanks.