使用另一个类中一个类的变量

时间:2012-10-24 15:03:49

标签: java android

我在Android中制作应用程序,我正在使用谷歌地图。

我有一个用户可以放置位置的导航屏幕。

然后他们点击一个按钮,打开mapview。

此处输入的位置也应该导航。

当我运行此代码时,我在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();
 }

2 个答案:

答案 0 :(得分:1)

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

启动地图
intent.putExtra("location", this.plaats);

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

String map_plaats = this.getIntent().getStringExtra("location");

答案 1 :(得分:1)

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

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

你可以像这样

在Map.class中获取这个字符串
getIntent().getStringExtra("key");

Study here了解有关Intents的更多信息