博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Intent和bundle的传值
阅读量:5252 次
发布时间:2019-06-14

本文共 785 字,大约阅读时间需要 2 分钟。

传递方:

//点击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"));

转载于:https://www.cnblogs.com/linxiaojiang/p/3213838.html

你可能感兴趣的文章
5.数组
查看>>
易信公众平台的微创新:活动消息
查看>>
设计模式之组合模式
查看>>
百度分享如何自定义分享url和内容?
查看>>
php抓取post方式提交的页面
查看>>
php简单缓存类
查看>>
文件中查找
查看>>
20145313张雪纯网络攻防第二次实验
查看>>
人人网JavaScript面试题
查看>>
使用C++编写linux多线程程序
查看>>
函数返回值
查看>>
Kontln的属性形式Getter和Setter
查看>>
序列化
查看>>
win10 bcdedit加入vhdx启动
查看>>
Oracle动态显示日志
查看>>
# maven
查看>>
Django admin美化插件suit应用[原创]
查看>>
拦截器、过滤器的区别
查看>>
[LeetCode] Delete Node in a BST 删除二叉搜索树中的节点
查看>>
在虚拟机的Linux系统下安装wineqq
查看>>