android 传值

来源:互联网 发布:沈阳知行科技怎么样 编辑:程序博客网 时间:2024/05/14 10:02

传值方法一

[java] view plaincopy
  1. Intent intent = new Intent();  
  2. Bundle bundle = new Bundle(); //该类用作携带数据  
  3. bundle.putString("name""tom");   
  4. bundle.putString("ip","8.8.8.8");  
  5. intent.putExtras(bundle); //为Intent追加额外的数据  

传值方法二

[java] view plaincopy
  1. Intent intent = new Intent();  
  2. intent.putExtra("name""tom");   
  3. intent.putExtra("money", 1098978009L);  

获取值

[java] view plaincopy
  1. Bundle bundle=getIntent().getExtras();  
  2. String name=bundle.getString("name");  
0 0
原创粉丝点击