Android窗体之间的传值 Intent Bundle

废话少说,直接上代码,代码是程序员之间最美的语言。
1、发送
Intent intent = new Intent(A.this, B.class);
startActivity(intent);

Intent intent = new Intent();
        intent.setClass(A.this, B.class);
        startActivity(intent);
2、
Intent intent = new Intent();
        intent.setClass(A.this, B.class);
        intent.putExtra("Name", "feng88724");
        startActivity(intent);
3、
        Intent intent = new Intent(A.this, B.class);
        
        /* 通过Bundle对象存储需要传递的数据 */
        Bundle bundle = new Bundle();
        /*字符、字符串、布尔、字节数组、浮点数等等,都可以传*/
        bundle.putString("Name", "feng88724");
        bundle.putBoolean("Ismale", true);
        
        /*把bundle对象assign给Intent*/
        intent.putExtras(bundle);
        
        startActivity(intent);
4、接受
    @Override
     public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            /*加载页面*/
            setContentView(R.layout.main);
            
            /*获取Intent中的Bundle对象*/
            Bundle bundle = this.getIntent().getExtras();
            
            /*获取Bundle中的数据,注意类型和key*/
            String name = bundle.getString("Name");
            boolean ismale = bundle.getBoolean("Ismale");
            

    }

原文地址

发布了4 篇原创文章 · 获赞 1 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/studycwq/article/details/6654907