本文实例讲述了AndroID Activity中使用Intent实现页面跳转与参数传递的方法。分享给大家供大家参考,具体如下:
新建一个FirstAvtivity.java
package com.zhuguangwei;import androID.app.Activity;import androID.content.Intent;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.vIEw.VIEw.OnClickListener;import androID.Widget.button;public class FirstActivity extends Activity { private button mybutton; /** Called when the activity is first created. */ @OverrIDe public voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); mybutton = (button) findVIEwByID(R.ID.mybutton); mybutton.setonClickListener(new OnClickListener() { @OverrIDe public voID onClick(VIEw v) { // Todo auto-generated method stub Intent intent = new Intent(); //Intent传递参数 intent.putExtra("testIntent","123"); intent.setClass(FirstActivity.this,SecondActivity.class); FirstActivity.this.startActivity(intent); } }); }}
新建第二个SecondActivity.java
package com.zhuguangwei;import androID.app.Activity;import androID.content.Intent;import androID.os.Bundle;import androID.Widget.TextVIEw;public class SecondActivity extends Activity{ private TextVIEw myTextVIEw; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { // Todo auto-generated method stub super.onCreate(savedInstanceState); setContentVIEw(R.layout.other); //使用Intent对象得到FirstActivity传递来的参数 Intent intent = getIntent(); String value = intent.getStringExtra("testIntent"); myTextVIEw = (TextVIEw) findVIEwByID(R.ID.myTextVIEw); myTextVIEw.setText(value); }}
两个Activity都要在AndroIDMenifest.xml中注册
更多关于AndroID相关内容感兴趣的读者可查看本站专题:《Android编程之activity *** 作技巧总结》、《Android视图View技巧总结》、《Android *** 作SQLite数据库技巧总结》、《Android *** 作json格式数据技巧总结》、《Android数据库 *** 作技巧总结》、《Android文件 *** 作技巧汇总》、《Android编程开发之SD卡 *** 作方法汇总》、《Android开发入门与进阶教程》、《Android资源 *** 作技巧汇总》及《Android控件用法总结》
希望本文所述对大家AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的Android Activity中使用Intent实现页面跳转与参数传递的方法全部内容,希望文章能够帮你解决Android Activity中使用Intent实现页面跳转与参数传递的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)