Intent intent = new Intent();   
             intent.setClass(ErrorPageActive.this, LoginActive.class);   
             startActivity(intent);   
就这么简单,如果要把一个页面的参数带到另一个页面,则需要
 Bundle bundle = new Bundle();   
 bundle.putString("USERNAME", et_username.getText().toString());   
intent.putExtras(bundle); 
通过以上三行代码现实,带参数跳转。
	
posted on 2009-04-13 00:40 
有猫相伴的日子 阅读(4249) 
评论(1)  编辑  收藏  所属分类: 
Android