本文介绍了如何在Android中以编程方式打开数字拨号盘?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要在Android中单击按钮时以编程方式显示数字拨号键盘(电话).代码可用于直接拨号,但单击按钮时只需要显示拨号键盘即可.
I want to display Number Dial Keypad (Phone Call) Programmatically on button click in android. Code is available for direct number dialing but I only need to show the dial keypad when I click the Button.
推荐答案
Intent intent = new Intent(Intent.ACTION_DIAL);
startActivity(intent);
这篇关于如何在Android中以编程方式打开数字拨号盘?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!