参考:http://c.biancheng.net/view/2923.html mainActivity中 通过intent 传递参数 class MyClickListener implements View.OnClickListener{ @Override public void onCl ...
分类:
其他好文 时间:
2020-07-01 12:42:53
阅读次数:
53
1.Intent显式跳转页面 val button5 = findViewById<Button>(R.id.mButton5) button5.setOnClickListener { val intent = Intent() intent.setClass(this, ThirdActivit ...
分类:
其他好文 时间:
2020-05-13 11:58:06
阅读次数:
54
在讲参数传递之前,先讲下intent的定义: Intent intent = new Intent(MainActivity.this,SecondActivity.class); //这是显式定义 如果是隐式定义,隐式Intent通过在AndroidManifest.xml中<activity>标 ...
分类:
其他好文 时间:
2017-10-17 12:45:06
阅读次数:
244
一、public Intent putExtra (String name, double[] value) 设置方法 intent.putExtra("aaa", "bbbb"); 获取方法 this.getIntent().getCharSequenceExtra("aaa") 二、public ...
分类:
移动开发 时间:
2017-07-07 21:25:30
阅读次数:
176
1.Service(服务)是一个一种可以在后台执行长时间运行操作而没有用户界面的应用组件。服务可由其他应用组件启动(如Activity),服务一旦被启动将在后台一直运行,即使启动服务的组件(Activity)已销毁也不受影响。 2.Service的创建 配置:exported="true"表示允许当 ...
分类:
其他好文 时间:
2017-02-19 16:46:24
阅读次数:
289
public class MainActivity extends Activity { TextView tv; EditText et; Button bt; @Override protected void onCreate(Bundle savedInstanceState) { super ...
分类:
其他好文 时间:
2016-10-23 14:33:34
阅读次数:
227
在Activity之间进行数据交换有一个“信使”:Intent,因此主要是将需要交换的数据放入Intent即可
Intent提供了多个重载方法,“携带”额外的数据:
放入Bundle数据:
putExtras(Bundle data);向Intent中放入需要“携带”数据包
Bundle getExtras();取出Intent所“携带”的数据包
放入键值数据:(源码底层实际上还是使用的...
分类:
其他好文 时间:
2016-03-03 16:21:24
阅读次数:
157
两者本质上没有任何区别。Bundle只是一个信息的载体 将内部的内容以键值对组织Intent负责Activity之间的交互 自己是带有一个Bundle的Intent.putExtras(Bundle bundle)直接将Intent的内部Bundle设置为参数里的bundleIntent.getEx...
分类:
其他好文 时间:
2015-12-27 06:20:38
阅读次数:
210
Bundle只是一个信息的载体 将内部的内容以键值对组织 ,Intent负责Activity之间的交互自己是带有一个Bundle的。Intent.putExtras(Bundlebundle)直接将Intent的内部Bundle设置为参数里的bundle,Intent.getExtras()...
分类:
移动开发 时间:
2015-08-10 13:24:54
阅读次数:
138
发送数据:Bundle bundle = new Bundle();bundle.putString("sex" , "男人");bundle.putDouble("height" , 40,38);Intent intent = new Intent();intent.putExtras(bund...
分类:
移动开发 时间:
2015-01-29 14:13:04
阅读次数:
161