摘要: Android中主要有四大组件,Activity、Service、Content Provider(内容提供者)和BroadcastReceiver(广播接收器),这四大组件之间的通讯由Intent解决。Intent包含了要执行的动作、要操作的数据和一些其他的附加属性。例1.打电话首先在AndroidMainfest.xml中声明权限,然后Intent aintent = new Intent();aintent.setAction(Intent.ACTION_CALL);aintent.setData(Uri.parse("tel:10086"));startActivi 阅读全文
posted @ 2013-04-08 21:57 六楼的雨 阅读(196) 评论(0) 推荐(0) 编辑