首页上一页 1 下一页尾页 1 条记录 1/1页
Intent intent = new Intent(SecondActivity.this,MainActivity.class);
Bundle bundle = new Bundle();
bundle.putString("name",name);
bundle.putString("password",password);
intent.putExtra("msg",bundle);
这一段代码,放在Btn点击事件之外怎么不好使啦??