所以我使用volley从数据库中读取值到我的Android应用程序,当我尝试从我的数据库中选择纬度和经度时我遇到了问题,使用我从响应中获取的值的意图运行速度比响应实际上需要从数据库中获取选定的值,这会导致始终打开位置为0,0的Google地图片段。
这是我的安卓代码
Response.Listener<String> responseListener4 =new Response.Listener<String>() {
@Override
public void onResponse(String response) {
try {
JSONObject jsonResponse = new JSONObject(response);
boolean success=jsonResponse.getBoolean("success");
if (success) {
lat= jsonResponse.getDouble("lat");
lng= jsonResponse.getDouble("lng");
System.out.println(lat);
System.out.println(lng);
Intent i2=new Intent(lists_activity.this,supervisor_maps.class);
i2.putExtra("lat",lat);
i2.putExtra("lng",lng);
startActivity(i2);
} else {
AlertDialog.Builder builder = new AlertDialog.Builder(lists_activity.this);
builder.setMessage("Loading Trucks Failed...")
.setNegativeButton("Retry",null)
.create()
.show();
}
} catch (JSONException e) {
e.printStackTrace();
}
}
};
UpdatedLocation updatedLocation=new UpdatedLocation(cmp,splitted[1],responseListener4);
RequestQueue queue=Volley.newRequestQueue(lists_activity.this);
queue.add(updatedLocation);
这是我应该去的课程,并从片段中打开位置。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if(GoogleServiceAvailable())
{
Toast.makeText(this,"Perfect!!!",Toast.LENGTH_LONG).show();
setContentView(R.layout.activity_driver_maps);
Intent test=getIntent();
test.getDoubleExtra("lat",latitude);
test.getDoubleExtra("lng",longitude);
System.out.println(latitude);
System.out.println(longitude);
initMap();
}
else
{
setContentView(R.layout.error);
}
}
public boolean GoogleServiceAvailable()
{
GoogleApiAvailability api=GoogleApiAvailability.getInstance();
int isAvailable=api.isGooglePlayServicesAvailable(this);
if (isAvailable== ConnectionResult.SUCCESS)
{
return true;
}
else if (api.isUserResolvableError(isAvailable))
{
Dialog dialog=api.getErrorDialog(this,isAvailable,0);
dialog.show();
}
else
{
Toast.makeText(this,"Cant connect to play services",Toast.LENGTH_LONG).show();
}
return false;
}
private void initMap() {
MapFragment mapFragment= (MapFragment) getFragmentManager().findFragmentById(R.id.mapFragment);
mapFragment.getMapAsync(this);
}
@Override
public void onMapReady(GoogleMap googleMap) {
mGoogleMap=googleMap;
goToLocation(latitude, longitude,15);
}
private void goToLocation(double lat, double lng, float zoom) {
LatLng ll=new LatLng(lat,lng);
CameraUpdate update= CameraUpdateFactory.newLatLngZoom(ll,zoom);
mGoogleMap.moveCamera(update);
mGoogleMap.addMarker(new MarkerOptions().position(new LatLng(latitude,longitude)).title("Your Location."));
}
}
当然你可以猜测前2个system.out打印位置,在这种情况下是30,30测试值,但第二类system.out只打印0,0
答案 0 :(得分:0)
您没有将值存储到第二个类中的纬度和经度变量中。
<iframe>
应该是:
test.getDoubleExtra("lat",latitude);
test.getDoubleExtra("lng",longitude);
intent.getDoubleExtra的工作方式与getStringExtra的工作方式不同。第二个参数是&#34;默认值&#34;。意思是如果意图没有找到&#34; lat&#34;值,它将使用默认值,在这种情况下为纬度(自动初始化为0)。
您可以写一个任意值而不是我写的0,并检查该值是否为任意值,然后意图出现错误,因此您可以执行特定的操作。当然,这不是一个必须&#34;但是一个建议。