我的onHandleIntent()没被调用?

时间:2012-06-26 06:52:46

标签: android android-intent intentservice

我有两个文件。

IntentServiceTest1Activity.java

 public class IntentServiceTest1Activity extends Activity {
     /** Called when the activity is first created. */

     public class ResponseReceiver extends BroadcastReceiver {

         public static final String ACTION_RESP = "com.mamlambo.intent.action.MESSAGE_PROCESSED";@Override
         public void onReceive(Context context, Intent intent) {
             // TODO Auto-generated method stub 
             TextView result = (TextView) findViewById(R.id.txt_result);
             String text = intent.getStringExtra(SimpleIntentService.PARAM_OUT_MSG);
             result.setText(text);
         }
     }
     private ResponseReceiver receiver;

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

         IntentFilter filter = new IntentFilter(ResponseReceiver.ACTION_RESP);
         filter.addCategory(Intent.CATEGORY_DEFAULT);
         receiver = new ResponseReceiver();
         registerReceiver(receiver, filter);

         Button button = (Button) findViewById(R.id.button);
         button.setOnClickListener(new OnClickListener() {
             public void onClick(View v) {
                 EditText input = (EditText) findViewById(R.id.txt_input);
                 String strInputMsg = input.getText().toString();
                 Intent msgIntent = new Intent(IntentServiceTest1Activity.this, SimpleIntentService.class);
                 msgIntent.putExtra(SimpleIntentService.PARAM_IN_MSG, strInputMsg);
                 startService(msgIntent);
             }
         });
     }
 }

SimpleIntentService.java

 public class SimpleIntentService extends IntentService {

     public static final String PARAM_IN_MSG = "imsg";
     public static final String PARAM_OUT_MSG = "omsg";
     public SimpleIntentService()
     {
         super("SimpleIntentService");
     }
     @Override
     protected void onHandleIntent(Intent intent) {
         // TODO Auto-generated method stub 
         String msg = intent.getStringExtra(PARAM_IN_MSG);
         SystemClock.sleep(30000); // 30 seconds         
         String resultTxt = msg + " " + DateFormat.format("MM/dd/yy h:mmaa", System.currentTimeMillis());

         Intent broadcastIntent = new Intent();
         broadcastIntent.setAction(ResponseReceiver.ACTION_RESP);
         broadcastIntent.addCategory(Intent.CATEGORY_DEFAULT);
         broadcastIntent.putExtra(PARAM_OUT_MSG, resultTxt);
         sendBroadcast(broadcastIntent);
     }
 } 

通过Log.d(),我可以看到即使服务已启动,也从未调用过onHandleIntent。我的Log.d跟踪在startService之后(msgIntent);并停在那里。没有显示onHandleIntent中的Log.d。怎么了?我能做些什么才能让它发挥作用?

谢谢!

1 个答案:

答案 0 :(得分:1)

我通过添加onStartCommand解决了我的问题,但没有覆盖它。

 public int onStartCommand(Intent intent, int flags, int startId) //sometimes overriding onStartCommand will not call onHandleIntent
{

    Logger_.logtoFile(tag, "here..!", 1);
    return super.onStartCommand(intent,flags,startId);
}