綁定帳號登入

Android 台灣中文網

打印 上一主題 下一主題

[求助] 程式突然不會重複執行了!

[複製連結] 查看: 1133|回覆: 0|好評: 0
跳轉到指定樓層
樓主
jasonb122 | 收聽TA | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
發表於 2014-5-20 15:19

馬上加入Android 台灣中文網,立即免費下載應用遊戲。

您需要 登錄 才可以下載或查看,沒有帳號?註冊

x
小弟之前用這個範例程式再加上一個簡單的加總變數可以測程式到底有沒有在跑
之前也是很正常的 突然有一天他的執行次數就一直卡在1 緯度經度也都沒更新 我重新拿了最原始的檔案來跑也沒有用了 不知道是怎麼回事! 求教各位!


p ackage com.GPSCurrentLocation;


import com.GPSCurrentLocation.R;

import android.app.Activity;
import android.content.Context;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.TextView;

public class GPSCurrentLocation extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        LocationManager locationManager;
        String serviceName = Context.LOCATION_SERVICE;
        locationManager = (LocationManager)getSystemService(serviceName);
        //String provider = LocationManager.GPS_PROVIDER;
        
        Criteria criteria = new Criteria();
        criteria.setAccuracy(Criteria.ACCURACY_FINE);
        criteria.setAltitudeRequired(false);
        criteria.setBearingRequired(false);
        criteria.setCostAllowed(true);
        criteria.setPowerRequirement(Criteria.POWER_LOW);
        String provider = locationManager.getBestProvider(criteria, true);
        
        Location location = locationManager.getLastKnownLocation(provider);
        updateWithNewLocation(location);
        locationManager.requestLocationUpdates(provider, 2000, 10,
                        locationListener);
    }
   private final LocationListener locationListener = new LocationListener() {
            public void onLocationChanged(Location location) {
            updateWithNewLocation(location);
            }
            public void onProviderDisabled(String provider){
            updateWithNewLocation(null);
            }
            public void onProviderEnabled(String provider){ }
            public void onStatusChanged(String provider, int status,
            Bundle extras){ }
    };
    int sum =0;
    private void updateWithNewLocation(Location location) {
            String latLongString;
            TextView myLocationText;
            myLocationText = (TextView)findViewById(R.id.myLocationText);
            TextView showsumText;
            showsumText = (TextView)findViewById(R.id.showsumText);
            if (location != null) {
            double lat = location.getLatitude();
            double lng = location.getLongitude();
            latLongString = "緯度:" + lat + "
經度:" + lng;
            } else {
            latLongString = "ERRO";
            }
            myLocationText.setText("
目前位置:" +
            latLongString);
            sum++;

            showsumText.setText("執行次數" + sum);
    }
}
「用Android 就來APK.TW」,快來加入粉絲吧!
Android 台灣中文網(APK.TW)
收藏收藏 分享分享 分享專題
用Android 就來Android 台灣中文網(https://apk.tw)
回覆

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 註冊

本版積分規則