4

startService(Intent intent)メソッドを使用してサービスを開始しています。この関数を呼び出すと、サービスのonCreateに到達しますが、 onStartCommandを呼び出すことができません。これが私のコードです--

@Override
public void onReceive(Context context, Intent intent) {
    // Send a text notification to the screen.
    Log.e("mudit", "Action: " + intent.getAction());

    try {
        ConnectivityManager connManager = (ConnectivityManager) context
                .getSystemService(Context.CONNECTIVITY_SERVICE);
        NetworkInfo info = connManager.getActiveNetworkInfo();
        Log.e("mudit", "getType: " + info.getType());
        Log.e("mudit", "isConnected: " + info.isConnected());
        if (info.isConnected()) {

            Intent newinIntent = new Intent(context, service.class);
            context.startService(newinIntent);
        }

    } catch (Exception e) {
        e.printStackTrace();
        Intent newinIntent = new Intent(context, service.class);
        context.stopService(newinIntent);

    }

}

サービスコード --

package com.android.service;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.widget.Toast;

public class service extends Service {

    @Override
    public IBinder onBind(Intent arg0) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public void onCreate() {
        super.onCreate();
        Toast.makeText(this, "Service created...", Toast.LENGTH_LONG).show();
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Toast.makeText(this, "Service destroyed ...", Toast.LENGTH_LONG).show();
    }

    public int onStartCommand(Intent intent, int flags, int startId) {

        Toast.makeText(this, "onStartCommand...", Toast.LENGTH_LONG).show();
        return 1;
    }

}  

Manifest.xml --

<receiver class=".AReceiver" android:name=".AReceiver">
        <intent-filter>
            <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
        </intent-filter>
    </receiver>
    <service class=".service" android:name=".service"
        android:enabled="true" android:icon="@drawable/icon">
    </service>
4

5 に答える 5

3
  1. バインドされていないサービス: サービスが終了してもバックグラウンドで無期限に実行されます。
  2. Bound Service : アクティビティの存続時間まで実行されます。

アクティビティは 経由でサービスを開始でき、 経由startService()で停止しstopService()ます。アクティビティがサービスとやり取りしたい場合は、 を使用できますbindService()

FirstonCreate()が呼び出されonStartCommand、Activity によって提供されるインテント データを使用して After が呼び出されます。

ソース

于 2012-11-06T07:37:21.197 に答える
2

larsVogelは、この優れた投稿でこの問題(および他の多くの問題)を解決します。

これは、ユーザーがWIFIネットワークに接続するタイミングを監視して、使用状況データをバッチアップロードする接続レシーバーを作成するために彼のコードを適応させた方法です。

マニフェストファイルで、レシーバーを配置し、</application>の終了タグの直前にサービスを宣言します。

    <receiver android:name=".ConnMonitor" android:enabled="true">
        <intent-filter>
            <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
        </intent-filter>
    </receiver>
    <service android:name=".BatchUploadGpsData" ></service>

</application>

ConnMonitor.javaという別のファイルにブロードキャストレシーバークラスを作成します(フローを適切に監視できるように、ログ呼び出しのコメントを解除してください)

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.util.Log;

public class ConnMonitor extends BroadcastReceiver {
    private String TAG = "TGtracker";

    @Override
    public void onReceive(Context context, Intent intent) {
        //String typeName = "";
        String state = "";
        int type = -1;
        ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService( Context.CONNECTIVITY_SERVICE );
        NetworkInfo test = (NetworkInfo) connectivityManager.getActiveNetworkInfo();
        //Log.v(TAG,"there has been a CONNECTION CHANGE -> "+intent.getExtras().get(ConnectivityManager.EXTRA_NETWORK_INFO));
        try {
            //typeName = test.getTypeName().toString();
            type = test.getType();
            state = test.getState().toString();
            //Log.i(TAG,"type -> '"+typeName +"'  state -> '"+state+"'"   );
        } catch (Exception e) {
            //typeName = "null";
            type = -1;
            state = "DISCONNECTED";
            //Log.i(TAG,"type -> error1 "+e.getMessage()+ "   cause = "+e.getCause()   );
        }

        if ( (type == 1)  &&  (state == "CONNECTED") ) {
            //Log.i(TAG, "I am soooo friggin uploadin on this beautiful WIFI connection ");
            Intent batchUploadDataService = new Intent(context, BatchUploadGpsData.class);
            context.startService(batchUploadDataService);
        } else {
            //Log.e(TAG,"NO FOUND MATCH type -> '"+typeName +"'  state -> '"+state+"'"   );
        }
    }
}

最後に、次のようなサービスBatchUploadGpsData.javaを作成します。

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;

public class BatchUploadGpsData extends Service {
    final String TAG = "TGtracker";

    @Override
    public void onCreate() {
        Log.e(TAG, "here i am, rockin like a hurricane.   onCreate service");
    // this service tries to upload and terminates itself whether it is successful or not 
    // but it only effectively DOES anything while it is created 
    // (therefore, you can call 1 million times if uploading isnt done, nothing happens)
    // if you comment this next line, you will be able to see that it executes onCreate only the first it is called
    // the reason i do this is that the broadcast receiver is called at least twice every time you have a new change of connectivity state with successful connection to wifi
        this.stopSelf();
    }
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        //Log.i(TAG, "Received start id " + startId + ": " + intent);
        Log.e(TAG, "call me redundant BABY!  onStartCommand service");
        // this service is NOT supposed to execute anything when it is called
        // because it may be called inumerous times in repetition
        // all of its action is in the onCreate - so as to force it to happen ONLY once
        return 1;
    }
    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }

}

これは擬似コードではありません。これは実際のコードであり、Android2.2以降でテストおよび実行されています。

このサービスをテストする方法は、AndroidでWIFIサービスをシャットダウンして再起動することです(wifiルーターの電源を切ることでもうまくいきます)。ただし、このコードでは、ネットに効果的に接続されているかどうかは確認されません。そのためには、httpclientリクエストを作成し、呼び出しの結果を確認することをお勧めします。この議論の範囲を超えています。

注:サービスはUIと同じスレッドで実行されるため、特定のニーズに応じて、アップロードを別のスレッドまたは非同期タスクに適切に実装することを強くお勧めします。サービス全体を別のスレッドで実行することもできますが、これらの場合の標準的な方法であるにもかかわらず、これもこの説明の範囲ではありません。

于 2012-07-21T15:31:40.987 に答える
2

最初に追加@OverrideonStartCommand(..)から、Android プロジェクトのターゲットが 2.0 よりも高いことを確認してください。

于 2010-10-23T21:20:40.890 に答える
1

ダイアログやサービス内のトーストなどの UI コンポーネントにはアクセスできないと思います。

これを試して。

public int onStartCommand(Intent intent, int flags, int startId) {

/*    Toast.makeText(this, "onStartCommand...", Toast.LENGTH_LONG).show();
    return 1; */

    Log.i("YourService", "Yes this works.");
}
于 2012-04-18T07:16:39.443 に答える
0

最初に、クラスに別の名前を付けることは、後の混乱を避けるための私の推奨事項です。次に、私が持っているサービスのマニフェスト呼び出しの例を示します。サービスなどを呼び出すときは、アプリケーションと同じパッケージにないため、フル パス名を使用します。

<service android:name="com.public.service.UploaderService" android:icon="@drawable/vgbio"></service>

これが私のサービスクラスの要点です。

package com.public.service;
....
public class UploaderService extends Service{
....
}

3 番目に、onStartCommand() に @Override を使用していることを確認してください。

于 2011-10-14T16:34:37.193 に答える