2012年11月30日

android 拨号等常用代码(转)

摘要: 现在开发中的功能需要直接跳转到拨号、联系人、短信界面等等,查找了很多资料,自己整理了一下。 首先,我们先看拨号界面,代码如下:[java]view plaincopyIntentintent=newIntent();intent.setAction("android.intent.action.CALL_BUTTON");startActivity(intent);和 [java]view plaincopyUriuri=Uri.parse("tel:xxxxxx");Intentintent=newIntent(Intent.ACTION_DIAL,u 阅读全文

posted @ 2012-11-30 10:18 技术蜗牛+1 阅读(855) 评论(0) 推荐(0) 编辑

导航