1、android Activity的生命周期
http://blog.csdn.net/hpoi/article/details/4629065
2、android Service的生命周期
http://www.cnblogs.com/macroxu-1982/archive/2012/12/18/2823183.html
3、android activity之间的数据传输
http://blog.csdn.net/dannor2010/article/details/8274999
(1)通过Intent
Intent myIntent = new Intent(this, OtherActivity.class);
myIntent.putExtra(string,value);
this.startActivity(this,Intent);
(2) 通过ClipboardManager
(3)通过extends Application
4、android线程之间的数据传输
http://blog.csdn.net/toyuexinshangwan/article/details/8597237