安卓打电话功能怎么实现啊
没思路,求点思路或者代码,感谢了!在线等
              
------解决方案--------------------这个google一下就有了啊,给你贴下我项目中的代码:
Intent phoneIntent = new Intent(  
                            "android.intent.action.CALL", Uri.parse("tel:"  
                                    + phoneNO));  
                    startActivity(phoneIntent);  
------解决方案--------------------或者看下这个:http://blog.csdn.net/withiter/article/details/12950195