码迷,mamicode.com
首页 > 其他好文 > 详细

Activity间用Intent和Bundle传递参数

时间:2014-05-10 02:05:28      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:class   tar   ext   c   int   get   

传递方:

//点击btn_sub传递 fieldHeight.getText()和 fieldWeight.getText()

 private void setListeners()
    {
     btn_sub.setOnClickListener(calrBMI); 
    }
    private OnClickListener calrBMI = new OnClickListener()
    {
     public void onClick(View v)
     {

       Intent intent = new Intent();
       Bundle bundle = new Bundle();
       bundle.putString("key_height", fieldHeight.getText().toString());
       bundle.putString("key_weight", fieldWeight.getText().toString());
       intent.setClass(ActivityMain.this,Report.class);
       intent.putExtras(bundle);
       startActivity(intent);   
      
     }    
    };

接收方:

         Bundle bundle = new Bundle();
         bundle = this.getIntent().getExtras();
         double height = Double.parseDouble(bundle.getString("key_height"))/100;
         double weight = Double.parseDouble(bundle.getString("key_weight"));

Activity间用Intent和Bundle传递参数,布布扣,bubuko.com

Activity间用Intent和Bundle传递参数

标签:class   tar   ext   c   int   get   

原文地址:http://www.cnblogs.com/HelloGuang/p/3708053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!