0

私はAndroidでGoogleマップに取り組んでいます。一部のコンテンツをマーカーに表示するようにサーバーに要求します。ユーザーがマップをパンするときに、保留中の要求またはすべての要求の接続を強制終了したいと考えています。

4

1 に答える 1

1

Close the underlying InputStream this will close the connection as well.

Regaring submitting requests to something (such as to your connection) and then cancelling the requests you can check ExecutorService interface. It has execute(), shutdown() and awaitTermination()

于 2012-05-07T06:53:19.910 に答える