Android: How to customize income call screen

2019-01-17 09:03发布

问题:

I am trying to develop an application that will customize the income call screen. I understood that it is impossible to customize or to change the exiting income screen, Is it right? if the answer is no than how? if the answer is yes than I want to know how to add screen above the income call screen?

thanks -Z

回答1:

Perhaps if your app handles the ACTION_ANSWER intent, you could display whatever screen you like. I don't think this will enable you to customize the existing screen, just replace it with your own.

For your app to handle intents you have to add intent filters to the app manifest file. This is fully described in the Intent class documentation. Here is a quick sample on how you could handle the ACTION_ANSWER intent:

     <activity class=".MyCustomCallActivity"
               android:label="@string/mycustomcall_title">
         <intent-filter>
             <action android:name="android.intent.action.ANSWER" />
         </intent-filter>

         ...
     </activity>