2011年4月20日

Android Intent 常见用法总结

摘要: android intent 常见用法总结1.打开网页 Uri uri = Uri.parse("http://www.google.com.hk"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);2.打开地图 /* 必须使用Google APIs包 */ Uri uri = Uri.parse("geo:113.46,22.27"); Intent it = new Intent(Intent.ACTION_VIEW, uri); startAct 阅读全文

posted @ 2011-04-20 11:47 coder狼 阅读(2875) 评论(0) 推荐(1) 编辑

导航