摘要: 1.从google搜索内容Intent intent = new Intent();intent.setAction(Intent.ACTION_WEB_SEARCH);intent.putExtra(SearchManager.QUERY,”searchString”)startActivity(intent);2.浏览网页Uri uri = Uri.parse(“http://www.google.com”);Intent it = new Intent(Intent.ACTION_VIEW,uri);startActivity(it);3.显示地图Uri uri = Uri.parse( 阅读全文
posted @ 2012-08-23 10:47 Lost in code 阅读(375) 评论(0) 推荐(0) 编辑