地理座標を受け入れるアプリをいくつか起動したい ( http://developer.android.com/training/sharing/send.html )。問題は、異なる URI が必要なことです。
例(疑似コード):
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
intent.addSomeUri("http://maps.google.com/maps/?daddr="+myAddress);
intent.addSomeUri("http://someotherservice.com/?coordinates="+myLat+":"+myLng+"&address=myAddress");
編集: もちろん、目標は両方のアプリが同じアクティビティ チューザーに表示されることです。
どうすれば達成できますか?