android下程序直接调用Google自己的地图程序2010-11-30programming tools约 75 字 预计阅读 1 分钟文章目录【注意】最后更新于 November 30, 2010,文中内容可能已过时,请谨慎使用。直接贴代码吧1 2 3 4 5 6 7 Intent intent = new Intent(Intent.ACTION_MAIN); ComponentName com = new ComponentName( "com.google.android.apps.maps", //要打开的程序的包名 "com.google.android.maps.MapsActivity" //程序中入口MainActivity,在Mainifent.xml查看 ); intent.setComponent(com); startActivity(intent); 文章作者 Chen, Zai-Chun上次更新 2010-11-30许可协议 CC BY-NC-ND 4.0