我想将背景黑色方块设置为透明,但结果是这样的。
_renderer.setApplyBackgroundColor(true);
_renderer.setBackgroundColor(Color.TRANSPARENT);
_renderer.setMargins(new int[]{0,0,0,0});
_renderer.setMarginsColor(Color.TRANSPARENT);
我想将图形部分设置得更小一些,以使轴文本有一些空间。我不想要黑色的东西......如何将其设置为透明。
另一个问题,如何使用xml来设置视图。我现在在 xml 中使用线性布局,然后使用 linearlayer.addView(view) 添加由 achartengine 返回的视图: ChartFactory.getBarChartView(...) 但是如果我在 xml 中定义一个视图,如何直接设置视图的内容栏内容。我的意思是不在我的代码中使用动态 addView,而是使用 xml 设置视图。谢谢。