0

可能重复:
如何获取存储在 mySQL 中的纬度和经度位置并在 android 地图应用程序中使用它。

我试图从 mySQL 数据库获取可能的纬度和经度到 android 以将它们用于地图应用程序。我使用这个来源:

Button shareit = (Button) findViewById (R.id.btnDir);
        shareit.setOnClickListener(new OnClickListener(){
            public void onClick(View arg0) {
            Intent z = getIntent();
            String des_lat = z.getStringExtra("des_lat");
            String des_long = z.getStringExtra("des_long");
            Intent i = new Intent(android.content.Intent.ACTION_VIEW, Uri 
                    .parse (String.format("http://maps.google.com/maps?daddr="+des_lat+","+des_long)));
                    //("geo:37.827500,-122.481670"));
            startActivity(i);
            }
        }
        );

但我的应用程序的结果是刚刚填写的地图应用程序中的编辑文本null,null

怎么做des_latitude,des_longitude

请帮帮我...!

4

0 回答 0