0

我正在Android應用程序的Google地圖上工作。我需要用自定義圖像創建地圖標記。我可以解析輸入以獲取圖像列表,但無法弄清楚如何將一個圖像加載到標記對象中。我想使用異步任務來避免網絡或主線程中的異常。在Android地圖標記上顯示自定義圖像

我研究了很多鏈接,但他們用drawable設置圖像。 其結果將是這樣的:

[some thing like this

+0

更加完善的措辭;固定語法。 – Prune

回答

0

從谷歌Documentation

private static final LatLng MELBOURNE = new LatLng(-37.813, 144.962); 
    private Marker melbourne = mMap.addMarker(new MarkerOptions() 
          .position(MELBOURNE) 
          .title("Melbourne") 
          .snippet("Population: 4,137,400") 
          .icon(BitmapDescriptorFactory.fromResource(R.drawable.arrow)));