私は住所の配列を持っていて、それらを地図上に表示したいです (方向が不可能であることはわかっています)。INTENT を使用していますが、1 つのアドレスしか表示されません。すべてのアドレスを表示するにはどうすればよいですか? これが私のコードです:
for(int j=0; j<jarElements.length(); j++){
JSONObject distanceObj = jarElements.getJSONObject(j).getJSONObject("distance");
distanceStr = distanceObj.getString("value");
Log.v("finally getting distance : ", distanceStr);
buff.append("Distace from the location " + Addresses[j] + " is : " + distanceStr).append("\n").append("\n");
Intent is = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?saddr=" + Addresses[j] + "&daddr=" + distanceStr));
startActivity(Is);