Intent的调用
Posted 高速转弯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Intent的调用相关的知识,希望对你有一定的参考价值。
//Intent intent=new Intent();
//intent.setClass(MainActivity.this, GPSService.class);
//以上二条可以合并成如下一条
Intent intent = new Intent(this,GPSService.class);
intent.putExtra("data1","youdata");
startActivit(intent );
//如果定义了Service,则调用startService(intent);
获取数据
getIntent().getExtras().get("data1");
以上是关于Intent的调用的主要内容,如果未能解决你的问题,请参考以下文章