So, After further investigating this I'm now sure that there is no easy way for it...
What I finally done was listen to the ACTION_PHONE_STATE_CHANGED and NEW_OUTGOING_CALL broadcast intent and when I receive them, register a sticky broadcast (one that I created) that contains an extra with the phone number and an indication if its an incoming or outgoing call. I remove that sticky intent when I get a ACTION_PHONE_STATE_CHANGED with CALL_STATE_IDLE).
Now when I need to know if there is an active call, I try getting that sticky broadcast (registerReciever with null receiver) and if there is a sticky available, I can get the phone number and an indication of an incoming/outgoing call.
One thing that still can be improved is better handling of a waiting call since ACTION_PHONE_STATE_CHANGED will be received during an active call and I can't say which is active (see related question)