AndroidPlot仍然是重叠的传奇

时间:2018-03-08 03:35:34

标签: android androidplot

目前,我正在重叠我的情节并将其显示为链接 https://www.dropbox.com/s/yaktr3ew2h4s6i6/Screenshot%202018-03-08%2011.26.52.jpg?dl=0

我已经阅读了解决方案的大部分内容,但我的传说仍然保持不变。以下是我尝试过的方法:

XYLegendWidget legendPlot = plot.getLegend();
legendPlot.position(150, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 10, VerticalPositioning.ABSOLUTE_FROM_BOTTOM);
plot.setLegend(legendPlot); //with or without remain the same as well
XYLegendWidget legendWidget2 = plot2.getLegend();
legendWidget2.position(100, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM);
plot2.setLegend(legendWidget2);


plot.getLegend().position(150, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM, Anchor.RIGHT_BOTTOM);
plot2.getLegend().position(100, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM, Anchor.RIGHT_BOTTOM);

我只是想把两个传说并排放置而不重叠。

1 个答案:

答案 0 :(得分:0)

有很多试用版。最后,我设法解决了我的问题。以下代码是在您期望的情节下放入XML的解决方案。

ap:legendAnchor="right_bottom"
ap:legendHorizontalPositioning="absolute_from_right"
ap:legendHorizontalPosition="-10dp"
ap:legendVerticalPositioning="relative_from_bottom"
ap:legendVerticalPosition="0dp"

这里是image