1

Fora Dictionary Api を使用して単語を翻訳してみます。ForaApiについてはこちら。これが私のコードです:

                String query = "com.ngc.fora.action.QUERY";  


                Intent foraIntent = new Intent(query);
                foraIntent.putExtra("QUERY_ID", new Long("1"));
                foraIntent.putExtra("QUERY", lword);
                foraIntent.putExtra("MAX_RESULTS", 2);
                foraIntent.putExtra("AS_PAGE", true);
                foraIntent.putExtra("CALLBACK_ACTION", "com.myAPP.ServiceForFora.TRANSLATE");
                foraIntent.putExtra("CALLBACK_PACKAGE", "com.myAPP");
                foraIntent.putExtra("CALLBACK_CLASS", ".ServiceForFora");
                startService(foraIntent);

しかし、Fora 辞書が私のサービス (ServiceForFora) にインテントを送信しようとすると、次のようになります。

05-07 06:20:40.440: W/ActivityManager(52): サービスを開始できません Intent { act=com.myAPP.ServiceForFora.TRANSLATE cmp=com.myAPP/.ServiceForFora (エクストラあり) }: 見つかりません

これが私のサービスです:

epublic class ServiceForFora extends Service{

@Override
   public IBinder onBind(Intent intent) {
      Toast.makeText(this, "onBind", Toast.LENGTH_LONG).show();     
      return null;
   }

   @Override
   public void onCreate() {
      //code to execute when the service is first created
       Toast.makeText(this, "onCreate", Toast.LENGTH_LONG).show();
       super.onCreate();
   }

   @Override
   public void onDestroy() {
      //code to execute when the service is shutting down
       super.onDestroy();
   }

   @Override
   public int onStartCommand(Intent intent, int flags, int startId) {
      //code to execute when the service is starting up
       super.onStart(intent, startId);
       return Service.START_STICKY;
   }      

}

およびマニフェスト表記:

<application><service android:name="com.myAPP.ServiceForFora" 
             android:exported="true">          
             <intent-filter>
             <action android:name="com.myAPP.ServiceForFora.TRANSLATE"/>                                                            
             </intent-filter>
            </service>
             .............................             
    </application>

ありがとう

4

1 に答える 1

1

このコードを削除してみてください:

foraIntent.putExtra("CALLBACK_PACKAGE", "com.myAPP");
foraIntent.putExtra("CALLBACK_CLASS", ".ServiceForFora");

さらにパラメーターをサービスの説明に追加します。

android:enabled="true" android:exported="true" android:stateNotNeeded="true" android:excludeFromRecents="true" android:configChanges="keyboard|keyboardHidden|orientation"
于 2012-06-03T13:33:51.097 に答える