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);
これを試して。