摘要: andriod两个Activity跳转。单击按钮跳转的时候,是通过Intent来实现的。 1 this.button=(Button)this.findViewById(R.id.ok); //获取按钮 2 //按钮跳转事件 3 this.button.setOnClickListener(new OnClickListener(){ 4 @Override 5 public void onClick(View arg0) { 6 Intent intent=new Inte... 阅读全文
posted @ 2013-10-08 10:51 kevenYuan 阅读(333) 评论(0) 推荐(0) 编辑