开发者

How to change existing UI screen to my own UI screen?

开发者 https://www.devze.com 2023-03-05 09:33 出处:网络
I am writing a code 开发者_如何学Gofor Dialing calls. I am using my own UI (i.e display screen), when i touch a button on the screen for dial button, it is dialing but the existing dialing screen is d

I am writing a code 开发者_如何学Gofor Dialing calls. I am using my own UI (i.e display screen), when i touch a button on the screen for dial button, it is dialing but the existing dialing screen is displayed. I want my own screen to be displayed where i use a button to end a call.Can any one tell me how can i get my own screen displayed instead of the existing screen.I have used the following code:

Uri parsedPhoneNumber = Uri.parse("tel:" + number);

Intent i = new Intent(Intent.ACTION_CALL, parsedPhoneNumber);
startActivity(i);


private void call() {
try {
    Intent callIntent = new Intent(Intent.ACTION_CALL);
    callIntent.setData(Uri.parse("tel:123456789"));
    startActivity(callIntent);
} catch (ActivityNotFoundException e) {
    Log.e("helloandroid dialing example", "Call failed", e);
}
}
0

精彩评论

暂无评论...
验证码 换一张
取 消