魂归汝居 发表于 2018-2-1 15:51:42

想请教一下这里的参数名和设备类对象是怎么定义和调用的

Intent intent = new Intent(Context, A.class);
        Bundle bundle = new Bundle();
        bundle.putParcelable(“参数名”, 设备类对象);
        intent.putExtras(bundle);
        startActivity(intent);


页: [1]
查看完整版本: 想请教一下这里的参数名和设备类对象是怎么定义和调用的