摘要:
[代码全屏查看]-Android Intent 用法全面总结[1].[代码] 调用拨号程序 跳至 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] // 给移动客服10086拨打电话Uri uri = Uri.parse("tel:10086");Intent intent = new Intent(Intent.ACTION_DIAL, uri);startActivity(intent);[2].[代码] 发送短信或彩信 跳至 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] // 给1 阅读全文
posted @ 2013-12-17 16:26 陈达辉 阅读(260) 评论(0) 推荐(0) 编辑