我一直在尝试将字符串从一个类中的方法传递给另一个类中的方法,但似乎无法做到。
我一直在尝试一些事情,比如
String location = Latitude + "," + Longitude;
AccelOrientExample GPSstring = new AccelOrientExample();
GPSstring.onSensorChanged(location);
其中 location 是我要传递给类 AccelOrientExample 的字符串,其中我有一个方法与位置争论。
请帮忙,谢谢
无法实例化类型 AccelOrientExample 是我得到的第一个错误,它是新的。并且 SensorEventListener 类型中的 onSensorChanged(SensorEvent) 方法不适用于第二行的参数(字符串)。
public void onSensorChanged(SensorEvent sensorEvent, String location)
是AccelOrientExample中的方法