使用Proximity接听电话

时间:2012-11-03 19:03:04

标签: android

使用接近传感器如何接收来电?怎么样的服务?

这也许是我试着在我的服务中做的....

try{
    //new DoBackgroundTask().execute()

    Object powerManager = null;
    Method method = powerManager.getClass().getDeclaredMethod("getSupportedWakeLockFlags");
    int supportedFlags = (Integer) method.invoke(powerManager);
    Field f= PowerManager.class.getDeclaredField("PROXIMITY_CALL_RECIEVE_WAKE_LOCK");


}
catch(Exception E){

}

1 个答案:

答案 0 :(得分:0)

您可以使用代码here,方法answerPhoneAidl就是您所需要的。当接近传感器提醒您时调用它。