android编程中用intent传值能传一个变量到另一个activity吗?
展开全部
Intent intent= new Intent(当前activity.this, 要跳转到的activity.class);
Bundle bundle=new Bundle();
bundle.putInt("a", "值");//这你看你要传什么值,int--putInt("key","值");
intent.putExtras(bundle);//把这个值放到intent里面
startActivity(intent);//跳转
------------------------------------------
这里已经跳转到另一个activity了
在oncreat里写这样的代码
Intent intent=new Intent();
Bundle b=new bundle();
//比如这个是String或者int型的:
String str=b.getString("key");
int a=b.getInt("key");
----------------------------------------
这样就完全ok了,好好加油吧,这条路还很长呢
Bundle bundle=new Bundle();
bundle.putInt("a", "值");//这你看你要传什么值,int--putInt("key","值");
intent.putExtras(bundle);//把这个值放到intent里面
startActivity(intent);//跳转
------------------------------------------
这里已经跳转到另一个activity了
在oncreat里写这样的代码
Intent intent=new Intent();
Bundle b=new bundle();
//比如这个是String或者int型的:
String str=b.getString("key");
int a=b.getInt("key");
----------------------------------------
这样就完全ok了,好好加油吧,这条路还很长呢
展开全部
Intent it = new Intent(Activity.Main.this, Activity2.class);
Bundle bundle=new Bundle();
bundle.putInt("a", "值");
it.putExtras(bundle);
startActivity(it);
新activity中oncreate方法中取传递过来的值
Bundle bundle = this.getIntent().getExtras();
int a = bundle.getInt("a");
Bundle bundle=new Bundle();
bundle.putInt("a", "值");
it.putExtras(bundle);
startActivity(it);
新activity中oncreate方法中取传递过来的值
Bundle bundle = this.getIntent().getExtras();
int a = bundle.getInt("a");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-04
展开全部
向下一个Activity传递数据(使用Bundle和Intent.putExtras)
Intent it = new Intent(Activity.Main.this, Activity2.class);
Bundle bundle=new Bundle();
bundle.putString("name", "This is from MainActivity!");
it.putExtras(bundle); // it.putExtra(“test”, "shuju”);
startActivity(it); // startActivityForResult(it,REQUEST_CODE);
详见下面的资料:http://blog.163.com/smily_happy/blog/static/182289166201122294511225/
Intent it = new Intent(Activity.Main.this, Activity2.class);
Bundle bundle=new Bundle();
bundle.putString("name", "This is from MainActivity!");
it.putExtras(bundle); // it.putExtra(“test”, "shuju”);
startActivity(it); // startActivityForResult(it,REQUEST_CODE);
详见下面的资料:http://blog.163.com/smily_happy/blog/static/182289166201122294511225/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询