摘要: 显示网页Uri uri = Uri.parse("http://www.google.com.hk/");Intent intent = new Intent(Intent.ACTION_VIEW, uri);startActivity(intent); 显示地图 Uri uri = Uri.parse("geo:38.899533,-77.036476");Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent); //其他geo... 阅读全文
posted @ 2013-10-17 15:18 忆殇之痕 阅读(207) 评论(0) 推荐(0) 编辑