-1

我正在用 android 制作一个应用程序,我正在使用谷歌地图。

我有一个导航屏幕,用户可以在其中放置一个位置。

然后他们单击一个按钮并打开一个地图视图。

在这里他们输入的位置也应该被导航。

当我运行此代码时,我的 map.class 中的 plaats 出现 nullpointerexception

我的导航代码是:

   public class Navigatie extends Activity{
        public String plaats;   

        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.navigatie);

            EditText text = (EditText)findViewById(R.id.title);
            this.plaats = text.getText().toString();

            // We create a new ImageButton which links to the map.java class 
            ImageButton imageButton = (ImageButton) findViewById(R.id.imageButton1);
            // We give a onclicklistener method to the button imageButton
                   imageButton.setOnClickListener(new OnClickListener() {

                // if the imageButton is clicked we start a new activity called "Map"
                public void onClick(View v) {
                    startActivity(new Intent(Navigatie.this, Map.class));
                }
            });
        }
    }

我的地图的位置显示编码的代码是:(只是代码的一部分)

 public Navigatie nav;

 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.map);

 mapView = (MapView) findViewById(R.id.mapview1);

 mc = mapView.getController();

 mapView.setBuiltInZoomControls(true);
 String plaats = nav.plaats;
 Geocoder geoCoder = new Geocoder(this, Locale.getDefault());
 try 
 {
   List<Address> addresses = geoCoder.getFromLocationName(plaats, 5);
   String strCompleteAddress = "";
   if (addresses.size() > 0) {
   GeoPoint p = new GeoPoint(
   (int) (addresses.get(0).getLatitude() * 1E6),
   (int) (addresses.get(0).getLongitude() * 1E6));
   mc.animateTo(p);
   mapView.invalidate();
   }
 } catch (IOException e) {
       e.printStackTrace();
 }
4

2 回答 2

1

将 plaats 添加到您的意图中,使用

intent.putExtra("location", this.plaats);

然后在你的地图活动中,在oncreate中:

String map_plaats = this.getIntent().getStringExtra("location");
于 2012-10-24T15:08:50.150 回答
1

您想将字符串发送到其他活动。

为此,您可以使用putExtra("key", "value");

您可以像这样在 Map.class 中获取此字符串

getIntent().getStringExtra("key");

在这里学习以了解有关 Intents 的更多信息

于 2012-10-24T15:11:08.683 回答