Android:搜索简单库以绘制无向图

时间:2016-11-05 17:23:17

标签: java android directed-graph

我正在寻找一个简单的库来绘制无向图。 我喜欢在我的Android App中显示一个简单的网络地图,其中包含一些节点以及它们之间的链接。

为了更清楚,我想到了一些简单的事情:

Graph graph = new Graph();
Node a = new Node("Name of node A"); // name should be displayed
Node b = new Node("Name of node B");
Link ab = new Link(a,b, "Name of the link"); // name should be displayed
graph.add(a);
graph.add(b);
graph.add(ab);
ab.setColor(Color.RED);
Bitmap result = graph.getBitmap(500, 500); // 500,500 = size in Px

有一些Java图形库可用,但我还没找到适用于Android的图形库。 (他们都使用Android中没有的Java UI东西。)

是否有人知道这样适用于Android的库?enter image description here

0 个答案:

没有答案