在类(而不是活动)之间传递数据会导致nullpointerexception

时间:2013-04-08 11:13:01

标签: java android class

我有一个活动ShowList,其中我有一些edittext字段和buttons。 我有一个buttonget location”,current location带有GPS

ShowList activity(工作正常,我可以获得location):

  public class ShowList extends Activity implements OnClickListener{


GPSTracker gps;   //i use GPSTracker to get the location (it is not an activity)
     .........

 case R.id.getlocation:
    // create class object
   gps = new GPSTracker(ShowList.this);

  // check if GPS enabled
 if(gps.canGetLocation()){

          double latitude = gps.getLatitude();
          double longitude = gps.getLongitude();

Toast.makeText(getApplicationContext(), "Your Location is - \nLat: " + latitude + "\nLong: " + longitude, Toast.LENGTH_LONG).show();
                    }else{
                        ...
                    }

我有一个自定义适配器

    public class myAdapter extends BaseAdapter{   
         ShowList locationclass=new ShowList();
         .....
        TextView Location = (TextView) convertView.findViewById(R.id.text_location);

            String lat=Double.toString(locationclass.gps.getLatitude());
            String lo=Double.toString(locationclass.gps.getLongitude());
            String coordinates="Lat: " + lat + "  Long: " + lo;
            Location.setText(coordinates);

我在“String lat ...”中收到nullpointer

那么,我怎样才能将locationShowList activity传递给adapter

4 个答案:

答案 0 :(得分:2)

您无法通过Activity实例化 new。否则,你应该通过上下文;构造函数中Adapter的纬度和经度:

public class myAdapter extends BaseAdapter{   
         private String latitude;
         private String longitude;
         private ArrayList<Item> items;
         private Context context; // TODO: use it for layoutInflater

        //the constructor
        public myAdapter(Context context, ArrayList<myItems> list, String latitude, String longitude) {
            this.items = list;
            this.latitude = latitude;
            this.longitude = longitude;
            this.context = context;
        }
         .....
        TextView Location = (TextView) convertView.findViewById(R.id.text_location);
            String coordinates="Lat: " + this.latitude + "  Long: " + this.longitude;
            Location.setText(coordinates);

答案 1 :(得分:1)

您不应该将活动实例创建为

ShowList locationclass=new ShowList();

而是使用要传递的参数调用适配器

MyAdapter myAdapter = new MyAdaper(latitude, longitude);

并相应地更改MyAdapter的构造函数。

请注意:不要用小写字母开始上课。遵循适当的命名约定。

编辑:(回复OP的评论)

如果要在活动ShowList.java中创建适配器类的对象,请将调用更改为:

MyAdapter theAdapter = new MyAdaper(latitude, longitude);

并将课程MyAdapter.java更改为:

public class myAdapter extends BaseAdapter{ 
    Strig latitude, longitude;  

    public MyAdapter(String lat, String long)
    {
        this.latitude=lat;
        this.longitude = long;
    }
    TextView Location = (TextView) convertView.findViewById(R.id.text_location);

    String lat=Double.toString(latitude);
    String lo=Double.toString(longitude);
    String coordinates="Lat: " + lat + "  Long: " + lo;
    Location.setText(coordinates);

答案 2 :(得分:0)

考虑到ShowList是一项活动,您很可能已实施方法onCreate来执行所有初始化。但是,当您使用new ShowList()创建类时,不会调用onCreate方法,而是在定义了默认构造函数ShowList的情况下调用它。我怀疑你没有定义它,因此你的gps成员变量是null - 导致你的NPE。

答案 3 :(得分:0)

首先:

我们不像这样在中创建Activity

ShowList locationclass=new ShowList();

Os通过其提供的委托创建活动实例,如startActivity和startActivityForResult。您必须使用相同的实例来传输数据并从同一参考传递数据。

在您的情况下,您的适配器需要携带原始活动参考。

其次

GPS定位跟踪有时需要几秒到几分钟。有时它根本不会根据您的设备可用的开放天空给您更新位置。并取决于其他一些环境因素。

因此,只有在位置管理器通过位置更新通知您的活动后,才应调用适配器显示位置。您必须在此之前请求位置更新。一旦你得到了位置。取消获取进一步更新的请求。

您需要更多地了解GPS在Android中的运作方式以及与之相关的最佳做法。 希望它有所帮助