//addArgument(ARG_USERID, adsComponent.);
}
private void addLocationArgument() {
LookupLocation loc = getLocation();
if (loc != null) {
double d = loc.getLatitude();
if (d != 0d) {
addArgument(ARG_LATITUDE, Double.toString(loc.getLatitude()));
addArgument(ARG_LONGITUDE, Double.toString(loc.getLongtitude()));
}
String s = loc.getCountryCode();
if (s != null && s.length() > 0) {
addArgument(ARG_COUNTRY, s);
} else {
s = loc.getCountryName();
if (s != null && s.length() > 0) {
addArgument(ARG_COUNTRY, s);
}
}
s = loc.getRegionName();
if (s != null && s.length() > 0) {
addArgument(ARG_REGION, s);
}
s = loc.getCityName();
if (s != null && s.length() > 0) {
addArgument(ARG_CITY, s);
}
}
}