码迷,mamicode.com
首页 > 其他好文 > 详细

Intent 、Intent Filter 和传输数据

时间:2014-12-11 13:48:04      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   使用   sp   on   

Intent  使用

 

最常使用的是:

Intent intent = new Intent();
intent.setClass(Main.this,New.class);
startActivity(intent);

其他的Intent 的使用:

打开一个网站:

Uri uri = Uri.parse("http://www.shike.im/");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);

打开一个音乐

Intent it = new Intent(Intent.ACTION_VIEW);
File file = new File("/sdcard/song.mp3");
it.setDataAndType(Uri.fromFile(file), "audio/*");
startActivity(it);

 

打开一个图片:

Intent it = new Intent(Intent.ACTION_VIEW);
File file = new File("/sdcard/image.png");
it.setDataAndType(Uri.fromFile(file), "image/*");
startActivity(it);

 

Intent 、Intent Filter 和传输数据

标签:style   blog   http   io   ar   color   使用   sp   on   

原文地址:http://www.cnblogs.com/zhoujn/p/4157285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!