这是我的XML文件我想将Android中XY图的背景颜色更改为白色?我尝试了一些代码,但它没有改变。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/LinearLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingTop="50dp" >
<TextView
android:id="@+id/values"
android:layout_width="264dp"
android:layout_height="34dp"
android:layout_weight="0.57"
android:hint="heart beat values"
android:paddingBottom="90dp"
android:textSize="20sp" />
<com.Android.XYPlot
android:id="@+id/dynamicPlot"
android:layout_width="fill_parent"
android:layout_height="230dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:background="@drawable/ic_launcher"
android:paddingBottom="5dp" />
</LinearLayout>
</ScrollView>
我试过这些东西来改变我的背景颜色,但它不起作用。
dynamicPlot.setBackgroundColor(getResources().getColor(Color.WHITE));
如果有可能我想删除背景中的网格..
dynamicPlot.getLayoutManager().remove(dynamicPlot.getLegendWidget());
我试过这个删除网格线但没有工作。
请帮帮我..
是否可以更改背景颜色?我正在绘制线图,我可以更改图形中的线条颜色。但是如何更改背景?它是默认颜色吗?
答案 0 :(得分:2)
dynamicPlot.getGraphWidget().getDomainGridLinePaint().setColor(Color.TRANSPARENT);
//set all domain lines to transperent
dynamicPlot.getGraphWidget().getRangeSubGridLinePaint().setColor(Color.TRANSPARENT);
//set all range lines to transperent
dynamicPlot.getGraphWidget().getRangeGridLinePaint().setColor(Color.TRANSPARENT);
//set all sub range lines to transperent
dynamicPlot.getGraphWidget().getDomainSubGridLinePaint().setColor(Color.TRANSPARENT);
//set all sub domain lines to transperent
dynamicPlot.getGraphWidget().getGridBackgroundPaint().setColor(Color.WHITE);
//set background to white to transperent