0

我在我的应用程序中做了一个android服务,当我的应用程序是服务时,我想检查我的应用程序在后台运行时我的手机是否收到电话,我该怎么做?:

public class CallService extends Service {
    @Override
    public IBinder onBind(Intent arg0) {
        // TODO Auto-generated method stub
        return null;
    }
    public void onCreate(){
        super.onCreate();
        Toast.makeText(this, "Service Started", Toast.LENGTH_SHORT).show();
    }
    public void onDestroyed(){
        Toast.makeText(this, "Service Destroyed", Toast.LENGTH_SHORT).show();
        super.onDestroy();
    }
}

提前致谢

4

0 回答 0