What do you think happened?
hey guys so i'm gonna post a picture....be forewarned it is kind of gross
[/IM

Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class Common {
public static Location currentLocation;
}
private void BuildLocationCallBack() {
locationCallback = new LocationCallback(){
@Override
public void onLocationResult(LocationResult locationResult) {
super.onLocationResult(locationResult);
//Common.currentLocation = locationResult.getLastLocation();
Common.currentLocation = new Location(locationResult.getLastLocation());
Log.d("Location", Common.currentLocation.getLatitude()+"/"+Common.currentLocation.getLongitude());
}
};
}
Log.d("Location",
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_today, container, false);
Log.d("Location",Common.currentLocation.getLatitude()+"/"+Common.currentLocation.getLongitude()));
return view;
}
public class Common {
public static Location currentLocation;
}
private void BuildLocationCallBack() {
locationCallback = new LocationCallback(){
@Override
public void onLocationResult(LocationResult locationResult) {
super.onLocationResult(locationResult);
//Common.currentLocation = locationResult.getLastLocation();
Common.currentLocation = new Location(locationResult.getLastLocation());
Log.d("Location", Common.currentLocation.getLatitude()+"/"+Common.currentLocation.getLongitude());
}
};
}
Log.d("Location",
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_today, container, false);
Log.d("Location",Common.currentLocation.getLatitude()+"/"+Common.currentLocation.getLongitude()));
return view;
}