How to make my own custom dialer in an Android phone

后端 未结 3 1711
别跟我提以往
别跟我提以往 2020-11-29 07:43

In my application I add an intent so that the user can call:

str=\"tel:\"+phoneArray[11];  
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(U         


        
3条回答
  •  情歌与酒
    2020-11-29 08:30

    If you want to totally replace the existing phone dialler and manage the call from within your application then the answer is that this can't be done except on custom ROM you build after changing the android source code replacing the default dialler with your own.

提交回复
热议问题