Individual Incoming Call Screen

I am trying to add a few views to the incoming call screen with the required functionality. Is it possible to override the exis android OS call screen? Is there a way to achieve this as a standalone application.?

Thanks in advance.

+3
source share
1 answer

I think that the activity of an incoming call has a high priority, which is installed by Linux at the kernel level. You must set a high priority to display your screen, then the activity of the incoming call will be in the background. it uses the concept of an intent and intent filter.

these links will help you understand the intent and intent filter

http://developer.android.com/guide/topics/manifest/intent-filter-element.html

http://developer.android.com/guide/topics/intents/intents-filters.html

0

Source: https://habr.com/ru/post/1778896/


All Articles