如何在Google地图中制作Toast.makeText?

时间:2015-03-28 19:48:56

标签: android google-maps android-toast

我想知道如何让Toast.makeText`告诉我路径中城市的顺序

代码:

        shortest = TSP.tsp(Matrix);


        for(int i=0; i < 20 ; i++)
        {

            googleMap.addPolyline(new PolylineOptions().geodesic(true)
                            .add(new                   LatLng(placeLatitude[shortest[i]],placeLongitude[shortest[i]]))
                            .add(new LatLng(placeLatitude[shortest[i+1]],placeLongitude[shortest[i+1]]))
            );
        }

    }

1 个答案:

答案 0 :(得分:0)

Here是关于吐司的完整描述。而且我猜你可以在String数组中按顺序记录要添加的城市,并运行for循环将其附加到文本中以显示在toast消息上。