2011年12月1日

初识android——四大组件

摘要: android的四大组件:Activity、Service、ContentProvider、BroadCastactivityActivity之间的调用和参数传递:1、 android通过activity窗口与用户进行交互,它相当于一个个jsp展示页面;2、 通过intent来控制activity的跳转;打开新的activity的方法:View Code 1 Intent intent = new Intent();2 intent.setClass(MainActivity.this, OtherActivit.class);3 //或者4 intent.setConponent(new C 阅读全文

posted @ 2011-12-01 17:35 Brown Qin 阅读(272) 评论(0) 推荐(0) 编辑

导航