Call types in CallLog.Calls.TYPE
Can anyone tell me what are the call types in android in CallLog.Calls.TYPE?
I found this answer 1 for incoming (1), outgoing (2) and missed (3), 4 (voicemail), 5 (rejected) and 6 (discarded list).
But I call CallLog.Calls.TYPE and it returns 10 (?) For me, but I don't know which type?
And there may be more types of calls ..
+3
Yaziel Asbai Rodriguez Puente
source
to share
1 answer
According to the documentation, CallLog.Calls.TYPE
there are 7 incoming, outgoing, missed, voice messages, rejected, blocked and answered from the outside.
These types correspond to the following constants CallLog.Calls
:
-
INCOMING_TYPE
-
OUTGOING_TYPE
-
MISSED_TYPE
-
VOICEMAIL_TYPE
-
REJECTED_TYPE
-
BLOCKED_TYPE
-
ANSWERED_EXTERNALLY_TYPE
+3
Tanis.7x
source
to share