Intent跳转

简介: <pre name="code" class="java"><!-- [if gte mso 9]><![endif]--><!-- [if gte mso 9]><![endif]--><!-- [if gte mso 10]><![endif]--><!-- [if gte mso 9]><![e
<!-- [if gte mso 9]><![endif]--><!-- [if gte mso 9]><![endif]--><!-- [if gte mso 10]><![endif]--><!-- [if gte mso 9]><![endif]--><!-- [if gte mso 9]><![endif]-->

Intent itmod = newIntent(WeigthListActivity.this, WeigthModActivity.class);

itmod.putExtra(""+SysConst.TABLE_FIELD_DATE, selectid);

itmod.putExtra(""+SysConst.TABLE_FIELD_INPUT,

cursor.getString(cursor.getColumnIndex(SysConst.TABLE_FIELD_INPUT)));

itmod.putExtra(""+SysConst.TABLE_FIELD_OUTPUT,

cursor.getString(cursor.getColumnIndex(SysConst.TABLE_FIELD_OUTPUT)));

itmod.putExtra(""+SysConst.TABLE_FIELD_WEIGHT, cursor.getString(cursor.getColumnIndex(SysConst.TABLE_FIELD_WEIGHT)));

itmod.putExtra(""+SysConst.TABLE_FIELD_AMOUNTEXERCISE,

 cursor.getString(cursor.getColumnIndex(SysConst.TABLE_FIELD_AMOUNTEXERCISE)));

startActivity(itmod);


Intent对象有很多的putExtra(…)方法,通过“key-value”对的方式把数据放置到Extras对象中。

目录
相关文章
|
Java
intent类的不同页面跳转
layout文件 很简单,给Button设置一个点击事件就可以了。
65 0
|
Android开发
【Android】Fragment跳转Activity时携带数据
在网上你可以看到很多Fragment都是用接口回调来携带数据跳转到Activity。 我觉得好麻烦,于是你们可以用我下面的方法 而我们可以直接使用下面这个方法:
115 0
|
Android开发
Android中 如何在本Activity页面退出后回到首页或者指定的Activity入口
Android中 如何在本Activity页面退出后回到首页或者指定的Activity入口
1459 0
|
Android开发
Android Studio 使用Intent实现页面的跳转(带参数)
不管是在APP,还是在网站中,页面之间的跳转都是很常见的,本文主要讲一下在APP中,如何通过Intent实现页面的跳转。   不带参数: 写在MainActivity页面的代码: 1 Intent intent = new Intent(); 2 intent.
3776 0
|
Android开发 数据格式 XML
|
Android开发 存储 开发工具
|
Android开发
Android back键及backWebview模式跳转详解
首先,来看一下关于Android home键和back键区别 back键 Android的程序无需刻意的去退出,当你一按下手机的back键的时候,系统会默认调用程序栈中最上层Activity的Destroy()方法来,销毁当前Activity。
1072 0