Home / ANDROID

ANDROID

Top 5 Android O Features You Must Know About Them

Android O Features 4

Google is moving pretty fast so, either way, Android O is released. it appears to be a pretty incremental update so it’s not the huge massive overhaul you would have heard about it already  If it was but there are some new stuff and we’ll go over that but for …

Read More »

Get Current Location Google Maps Api Android

20597702 1395638590526669 1532732243 O 1

MainActivity.java package com.example.pc_1.location; import android.location.Location; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.TextView; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.api.GoogleApiClient; import com.google.android.gms.location.LocationListener; import com.google.android.gms.location.LocationRequest; import com.google.android.gms.location.LocationServices; public class MainActivity extends AppCompatActivity implements GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener, LocationListener { private final String Log_Tag = "TestApp"; private TextView txtOutput; private GoogleApiClient mGoogleApiClient; private LocationRequest mLocationRequest; @Override protected void onCreate(Bundle …

Read More »