2

この私の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());

グリッド線を削除するためにこれを試しましたが、機能しませんでした。

だから私を助けてください..

背景色を変更することは可能ですか?折れ線グラフをプロットしていますが、グラフの線の色を変更できますが、背景を変更するにはどうすればよいですか? デフォルトの色ですか?

4

1 に答える 1

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
于 2013-11-18T05:01:19.033 に答える