Android: How to customize income call screen

前端 未结 1 828
既然无缘
既然无缘 2020-12-08 12:33

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

相关标签:
1条回答
  • 2020-12-08 12:58

    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>
    
    0 讨论(0)
提交回复
热议问题