2012-09-26 75 views
0

如何在PolylineConnection的末尾創建空心箭頭?在PolylineConnection的末尾創建一個空心箭頭?

目前,我有使用實心箭頭:

PolylineConnection c 
PolygonDecoration decoration = new PolygonDecoration(); 
PointList decorationPointList = new PointList(); 
decorationPointList.addPoint(0, 0); 
decorationPointList.addPoint(-2, 2); 
decorationPointList.addPoint(-2, 0); 
decorationPointList.addPoint(-2, -2); 
decoration.setTemplate(decorationPointList); 
c.setSourceDecoration(decoration); 

但我只需要一個箭頭的輪廓,與中央的空。

回答

1

沒得測試它的時候,但setFill(boolean)應該這樣做:

decoration.setTemplate(decorationPointList); 
decoration.setFill(false); 
+0

這個奇妙的作品。我錯過了API中的這種方法。 – Whitecat

0

您是否嘗試過使用drawPolyline?這似乎是在對文檔進行簡要介紹之後,它應該做你以後的工作。