10 2014 档案

摘要:本文介绍Android中Intent的各种常见作用。1 Intent.ACTION_MAINString: android.intent.action.MAIN标识Activity为一个程序的开始。比较常用。Input:nothingOutput:nothing 2 Intent.Action... 阅读全文
posted @ 2014-10-23 20:11 当年 阅读(141) 评论(0) 推荐(0)
摘要:系统打电话界面:Intent intent = new Intent();//系统默认的action,用来打开默认的电话界面 intent.setAction(Intent.ACTION_CALL);//需要拨打的号码intent.setData(Uri.parse("tel:"+i)); call... 阅读全文
posted @ 2014-10-20 15:36 当年 阅读(157) 评论(0) 推荐(0)