当前位置: 代码迷 >> J2ME >> 安卓打电话功能如何实现
  详细解决方案

安卓打电话功能如何实现

热度:292   发布时间:2016-04-17 21:06:04.0
安卓打电话功能怎么实现啊
没思路,求点思路或者代码,感谢了!在线等

------解决方案--------------------
这个google一下就有了啊,给你贴下我项目中的代码:

Intent phoneIntent = new Intent(  
                            "android.intent.action.CALL", Uri.parse("tel:"  
                                    + phoneNO));  
                    startActivity(phoneIntent);  

------解决方案--------------------
或者看下这个:http://blog.csdn.net/withiter/article/details/12950195
  相关解决方案