摘要: Android Intent 用法汇总 博客分类:androidAndroidGoogleF#显示网页 1. Uri uri = Uri.parse("http://google.com"); 2. Intent it = new Intent(Intent.ACTION_VIEW, uri); 3. startActivity(it); 显示地图 1. Uri uri = Uri.parse("geo:38.899533,-77.036476"); 2. Intent it = new Intent(Intent.ACTION_VIEW, uri); 阅读全文
posted @ 2011-08-23 10:57 kangwang1988 阅读(343) 评论(0) 推荐(0)