博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android笔记之intent使用(一)
阅读量:5367 次
发布时间:2019-06-15

本文共 1311 字,大约阅读时间需要 4 分钟。

1、通过Intent,在Activity01中调起OtherActivity,并向OtherActivity传递某个信息

 Intent intent = new Intent();

 intent.setClass(Activity01.this, OtherActivity.class);//指出是哪个Activity,setClass(对象,类),对于嵌套类,为了提供良好的阅读方式并避免奇异,我们都指明是哪个类
startActivity(intent); //启动另外的Activity,作为View的方法,可以直接使用startActivity,由于嵌套类,这样些可以清晰一些。

给Intent添加数据:

intent.putExtra("param_str", "Info from Activity01"); //向另一个Activity传递
,name也要引号,value采用string的格式,也可以是其他

或:

        Bundle extras = new Bundle();        extras.putInt("Index", position);//整型数据        Intent fillInIntent = new Intent();        fillInIntent.putExtras(extras);

 

2、在Otherctivity中接受传递的信息

 Intent intent = getIntent();

String value = intent.getStringExtra("param_str"); //param_str为信息名,获得字符串数据

  //String value = intent.getStringExtra("param_str","***");//如果取不到则默认为"***"

3、intent也可以调用其他的应用,例如发送短信

Uri uri = Uri.parse("smsto:0000123456");

Intent intent = new Intent(Intent.ACTION_SENDTO, uri);//Intent(String action,Uri uri)对uri进行某个操作,ACTION_SENDTO:Send a message to someone specified by the data.
intent.putExtra("sms_body", "This is my text info from Activity01."); //传递SMS的文本内容
Activity01.this.startActivity(intent); //启动另外的Activity,并不限于是否是同一个应用。系统收到相关消息,将调起相关应用

参考资料:

http://blog.csdn.net/flowingflying/article/details/6226203

转载于:https://www.cnblogs.com/xingyyy/p/3256760.html

你可能感兴趣的文章
Android OpenGL ES 开发(N): OpenGL ES 2.0 机型兼容问题整理
查看>>
项目中用到的技术及工具汇总(持续更新)
查看>>
【算法】各种排序算法测试代码
查看>>
HDU 5776 Sum
查看>>
201521123044 《Java程序设计》第9周学习总结
查看>>
winfrom 图片等比例压缩
查看>>
人工智能实验报告一
查看>>
用LR12录制app,用LR11跑场景,无并发数限制,已试验过,可行!
查看>>
python 多线程就这么简单(转)
查看>>
oracle 简述
查看>>
ajax如何向后台传递数组,在后台该如何接收的问题(项目积累)
查看>>
Solr之java实现增删查操作
查看>>
httpClient连接工具类实测可用
查看>>
CDOJ 1965 连通域统计【DFS】
查看>>
飞机大战3-我的飞机
查看>>
c#接口
查看>>
MyEclipse部署Jboss出现java.lang.OutOfMemoryError: PermGen space
查看>>
ZOJ 1133
查看>>
alibaba / zeus 安装 图解
查看>>
Planned Delivery Time as Work Days (SCN discussion)
查看>>