Intent to be fired when a call ends?
Posted
by LucaB
on Stack Overflow
See other posts from Stack Overflow
or by LucaB
Published on 2010-03-19T14:08:40Z
Indexed on
2010/03/19
14:11 UTC
Read the original article
Hit count: 264
Hi I have an already built application and I want to add a feature that has to be started when a call ends. How can I achieve that? I thought that declaring in my manifest something like this
<activity android:name="Filter">
<intent-filter>
<category android:name="android.intent.SOMETHING" />
</intent-filter>
</activity>
could be enough, but what kind of intent I have to put on the filter?
Looking in the documentation I found only the intents that detects when a call is started.
Is what I'm looking for possible?
Thanks
© Stack Overflow or respective owner