WEB开发网
开发学院手机开发Android 开发 intent应用实例 阅读

intent应用实例

 2010-05-08 18:16:00 来源:WEB开发网   
核心提示:06 setContentView(R.layout.main);0708 final Button button = (Button) findViewById(R.id.button_id);09 button.setOnClickListener(new Button.OnClickListener() {10

06 setContentView(R.layout.main);

07

08 final Button button = (Button) findViewById(R.id.button_id);

09 button.setOnClickListener(new Button.OnClickListener() {

10 @Override

11 public void onClick(View b) {

12 Intent i = new Intent(Intent.ACTION_DIAL,

13 Uri.parse("tel://13800138000"));

14 startActivity(i);

15 }

16 });

17 }

18 }

用Intent调用系统中经常被用到的组件

1,web浏览器

Uri uri= Uri.parse("http://kuikui.javaeye.com");

returnIt = new Intent(Intent.ACTION_VIEW, uri);

2,地图

Uri mapUri = Uri.parse("geo:38.899533,-77.036476");

returnIt = new Intent(Intent.ACTION_VIEW, mapUri);

3,调拨打电话界面

Uri telUri = Uri.parse("tel:100861");

returnIt = new Intent(Intent.ACTION_DIAL, telUri);

4,直接拨打电话

Uri callUri = Uri.parse("tel:100861");

returnIt = new Intent(Intent.ACTION_CALL, callUri);

5,卸载

Uri uninstallUri = Uri.fromParts("package", "xxx", null);

returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);

6,安装

Uri installUri = Uri.fromParts("package", "xxx", null);

returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

7,播放

Uri playUri = Uri.parse("file:///sdcard/download/everything.mp3");

returnIt = new Intent(Intent.ACTION_VIEW, playUri);

8,掉用发邮件

Uri emailUri = Uri.parse("mailto:shenrenkui@gmail.com");

returnIt = new Intent(Intent.ACTION_SENDTO, emailUri);

9,发邮件

returnIt = new Intent(Intent.ACTION_SEND);

String[] tos = { "shenrenkui@gmail.com" };

String[] ccs = { "shenrenkui@gmail.com" };

returnIt.putExtra(Intent.EXTRA_EMAIL, tos);

上一页  1 2 3 4  下一页

Tags:intent 应用 实例

编辑录入:coldstar [复制链接] [打 印]
赞助商链接