Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过意图打开所有地图应用程序。
我试过了,应用程序崩溃了,意图没有打开
Intent myIntent = new Intent("android.intent.category.APP_MAPS"); startActivity(myIntent);
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345")); startActivity(intent);
尝试这个。