服务电话回答

时间:2012-09-21 16:10:32

标签: android

我在我的应用程序中提供了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();
    }
}

提前致谢

0 个答案:

没有答案