极限第四天
Posted yyl141
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了极限第四天相关的知识,希望对你有一定的参考价值。
进行功能书写,页面跳转
private Button.OnClickListener btnlogin=new Button.OnClickListener(){
public void onClick(View v){
Intent it=new Intent();
it.setClass(MainActivity.this,AfterLoginActivity.class);
it.putExtra("str1", e1.getText().toString());
it.putExtra("str2", e2.getText().toString());
startActivity(it);
}
};
Intent intent=getIntent();
Bundle bundle=intent.getExtras();
v1.setText(bundle.getString("str1"));
v2.setText(bundle.getString("str2"));
public void onClick(View v){
Intent it=new Intent();
it.setClass(MainActivity.this,AfterLoginActivity.class);
it.putExtra("str1", e1.getText().toString());
it.putExtra("str2", e2.getText().toString());
startActivity(it);
}
};
Intent intent=getIntent();
Bundle bundle=intent.getExtras();
v1.setText(bundle.getString("str1"));
v2.setText(bundle.getString("str2"));
以上是关于极限第四天的主要内容,如果未能解决你的问题,请参考以下文章