所以我正在创建一个应用程序,其中箭头指向某个地理位置点。在我的程序中,每次手机移动时,都会调用GPSTracker类的新实例。运行应用程序冻结10秒后出现问题。我需要在创建新的gpsTracker之前以某种方式丢弃gpsTracker。 `
@Override
public void onSensorChanged(SensorEvent event) {
GPSTracker gpsTracker = gpsTracker = new GPSTracker(this);
float azimuth = event.values[0];
Float TrueNorth, theta, beta, aplha;
Location curloc = new Location("Current Location");
Location destloc = new Location("Destination Location");
Float f = 0.000621371F;
curloc.setLatitude(gpsTracker.getLatitude());
curloc.setLongitude(gpsTracker.getLongitude());
destloc.setLatitude(47.66432);
destloc.setLongitude(-122.08458);
Float h = getMiles(curloc, destloc);
Double g = Double.valueOf(h);
tvHeading.setText(g.toString() + " Miles");
GeomagneticField geoField = new GeomagneticField(Double
.valueOf(curloc.getLatitude()).floatValue(), Double
.valueOf(curloc.getLongitude()).floatValue(), Double
.valueOf(curloc.getAltitude()).floatValue(),
System.currentTimeMillis());
azimuth -= geoField.getDeclination();
float bearTo = curloc.bearingTo(destloc);
if(bearTo <0){
bearTo = bearTo + 360;
}
float direction = bearTo - azimuth;
if(direction <0){
direction = direction + 360;
}
RotateAnimation ra = new RotateAnimation(
currentDegree, -direction, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,
0.5f
);
ra.setDuration(210);
ra.setFillAfter(true);
Image.startAnimation(ra);
currentDegree = direction;
if(curloc == destloc){
tvHeading.setText("Arrived At Destination!");
}
}
`从代码中可以看出,创建了GPSTracker gpsTracker = new GPSTracker(this)。就像之前所说的那样,应用程序会冻结,因为它似乎不会立即丢弃对象。
答案 0 :(得分:1)
每当你想从内存中显式删除一个对象时,你想做:
gpsTracker.finalize();
gpsTracker = null;
System.gc();
试试这个。这应该有用。
答案 1 :(得分:0)
你可以在这里使用单身概念,如果这个对象存在,那么就不要创建它。
GPSTracker gpsTracker;
public GPSTracker getGPSTrackerInstance() {
if(gpsTracker == null)
gpsTracker = new GPSTracker();
return gpsTracker;
}
如果对象不存在,则此方法将创建GPSTracker
类对象。否则不会。