0

ロケーションマネージャーから現在のロケーションを受け取り、それらの座標をユーザーに表示するアクティビティのテキストビューを更新することになっているプロジェクトがあります。ロケーションマネージャーをバックグラウンドでサービスとして実行する必要があります。現在、アクティビティを開いていても、場所が更新され、textViewsを更新するメソッドがサービスから呼び出されるたびに、強制的に閉じられます。また、静的メソッドはtextViewsと互換性がないため、メソッドを静的メソッドに変更することはできません。以下は、サービス、呼び出されるメソッド、およびスタックトレースです。

場所が変更されたときに呼び出されるサービス中のメソッド

        public void onLocationChanged(Location location) {
            currentLocation = location;
            SplashActivity.historyList.add(currentLocation);
            Toast.makeText(getApplicationContext(), "Point added",
                    Toast.LENGTH_SHORT).show();
            //postpones the update until NavigatorActivity starts
            if (NavigatorStarted) {
            new NavigatorActivity().doActionFine(currentLocation);
            }
            // these lines are controversial...
            if (location.getAccuracy() > 1000 && location.hasAccuracy())
                locationManager.removeUpdates(this);                          

        }

正確なGPS信号または大まかな信号のいずれかから新しい位置でテキストビューを更新することを目的としたアクティビティのメソッド。do actionメソッドを使用して、LocationServiceの現在の場所のパラメーターを使用してサービスから呼び出します

public void updateLocationTextViewsFine(Location currentLocation) {
    currentLatView = (TextView) findViewById(R.id.currentLat);
    currentLonView = (TextView) findViewById(R.id.currentLon);
    // update the textviews (labels)
    String lat = currentLocation.getLatitude() + " (accurate)";
    String lon = currentLocation.getLongitude() + " (accurate)";
    currentLatView.setText(lat);
    currentLonView.setText(lon);
}
public void updateLocationTextViewsCoarse(Location currentLocation) {
    currentLatView = (TextView) findViewById(R.id.currentLat);
    currentLonView = (TextView) findViewById(R.id.currentLon);
    // update the textviews (labels)
    String lat = currentLocation.getLatitude() + " (low accuracy)";
    String lon = currentLocation.getLongitude() + " (low accuracy)";
    currentLatView.setText(lat);
    currentLonView.setText(lon);
}

public  void doActionFine(Location currentLocation) {
    updateLocationTextViewsFine(currentLocation);
}


public void doActionCoarse(Location currentLocation) {
    updateLocationTextViewsCoarse(currentLocation);
}

新しいエラーを受け取りました。

04-20 20:15:33.894: E/AndroidRuntime(4389): FATAL EXCEPTION: main
04-20 20:15:33.894: E/AndroidRuntime(4389): java.lang.NullPointerException
04-20 20:15:33.894: E/AndroidRuntime(4389):     at android.app.Activity.findViewById(Activity.java:1637)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at com.example.UVAMapsProject.NavigatorActivity.updateLocationTextViewsFine(NavigatorActivity.java:341)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at com.example.UVAMapsProject.NavigatorActivity.doActionFine(NavigatorActivity.java:360)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at com.example.UVAMapsProject.LocationService$2.onLocationChanged(LocationService.java:116)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at android.location.LocationManager$ListenerTransport._handleMessage(LocationManager.java:191)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at android.location.LocationManager$ListenerTransport.access$000(LocationManager.java:124)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at android.location.LocationManager$ListenerTransport$1.handleMessage(LocationManager.java:140)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at android.os.Handler.dispatchMessage(Handler.java:99)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at android.os.Looper.loop(Looper.java:123)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at android.app.ActivityThread.main(ActivityThread.java:4627)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at java.lang.reflect.Method.invokeNative(Native Method)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at java.lang.reflect.Method.invoke(Method.java:521)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
04-20 20:15:33.894: E/AndroidRuntime(4389):     at dalvik.system.NativeStart.main(Native Method)
4

2 に答える 2

2

これは、バインダーを使用して行うことができます。

http://developer.android.com/guide/topics/fundamentals/bound-services.html

次に、アクティビティで、上記の記事の例のように実行します。サービスに接続したら、現在の場所 (サービスまたは設定に保存されています) を尋ねます。次に、呼び出されるサービスにリスナーを指定します。

ここにいくつかのサンプルコードがあります。Listener クラスと LocalService クラスの実装がありません。しかし、私が何を意味したかを示すためだけに。

public class BindingActivity extends Activity {
    LocalService mService;
    boolean mBound = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

    @Override
    protected void onStart() {
        super.onStart();
        // Bind to LocalService
        Intent intent = new Intent(this, LocalService.class);
        bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
    }

    @Override
    protected void onStop() {
        super.onStop();
        // Unbind from the service
        if (mBound) {
            mService.removeListener(this);
            unbindService(mConnection);
            mBound = false;
        }
    }

    private ServiceConnection mConnection = new ServiceConnection() {

        @Override
        public void onServiceConnected(ComponentName className,
                IBinder service) {
            // We've bound to LocalService, cast the IBinder and get LocalService instance
            LocalBinder binder = (LocalBinder) service;
            mService = binder.getService();
            mBound = true;

            handleLocation(mService.getCurrentLocation());
            mService.addListener(BindingActivity.this);
        }

        @Override
        public void onServiceDisconnected(ComponentName arg0) {
            mBound = false;
        }
    };
}

アクティビティが終了したら、バインドを解除する前にリスナーをサービスから削除します。

于 2012-04-21T00:00:34.727 に答える
1
new NavigatorActivity().doActionFine(currentLocation);

これを見たところ....アクティビティの新しいインスタンスを作成し、そのメソッドを呼び出しています。この新しいインスタンスは、ロックを開くために作成されたアクティビティとは異なります。これは、ライフサイクル メソッドが呼び出されていない新しいアクティビティです。私は間違いなく、他の回答に示されているようなバインダースキームに移行します

于 2012-04-21T00:36:09.263 に答える