Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1.     protected void onCreate(Bundle savedInstanceState) {
  2.         super.onCreate(savedInstanceState);
  3.         setContentView(R.layout.activity_main);
  4.                
  5.         LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);  
  6.        
  7.         Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
  8.        
  9.         TextView textView = (TextView)findViewById(R.string.hello_world);
  10.        
  11.         textView.setText("Whaaat!");
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement