0

私はこのトピックhttp://developer.android.com/guide/google/gcm/gs.html#libsに従って GCM を作成しましたが、すべての手順をうまく実行しましたが、クラス GCMIntenetService を作成しようとすると、クラスでいくつかのエラーが発生しましたエラーの「型に解決できません」、「メソッドの戻り値の型がありません...」... 誰か助けてください。

パッケージcom.example.elarabygroup;

public class GCMIntenetService extends GCMBaseIntentService {

private static final String LOG_TAG = "GetAClue::GCMIntentService";

public GCMIntentService() {
    super( GCM_SENDER_ID );
    // TODO Auto-generated constructor stub
    Log.i( LOG_TAG, "GCMIntentService constructor called" );
}

@Override
protected void onError( Context arg0, String errorId ) {
    // TODO Auto-generated method stub
    Log.i( LOG_TAG, "GCMIntentService onError called: " + errorId );
}

@Override
protected void onMessage( Context arg0, Intent intent ) {
    // TODO Auto-generated method stub
    Log.i( LOG_TAG, "GCMIntentService onMessage called" );
    Log.i( LOG_TAG, "Message is: " + intent.getStringExtra( "message" ) );
}

@Override
protected void onRegistered( Context arg0, String registrationId ) {
    // TODO Auto-generated method stub
    Log.i( LOG_TAG, "GCMIntentService onRegistered called" );
    Log.i( LOG_TAG, "Registration id is: " + registrationId );
}

@Override
protected void onUnregistered( Context arg0, String registrationId ) {
    // TODO Auto-generated method stub
    Log.i( LOG_TAG, "GCMIntentService onUnregistered called" );
    Log.i( LOG_TAG, "Registration id is: " + registrationId );
}

}

4

1 に答える 1

0

名前空間を追加しなかったため、問題を解決できました。

import com.google.android.gcm.GCMBaseIntentService;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
于 2012-09-05T09:23:33.110 に答える