如何在Donut-achartEngine Graph中设置图像?

时间:2013-07-29 07:10:49

标签: android achartengine donut-chart

我使用aChartEngine库制作甜甜圈图。但是在甜甜圈图中添加图像有问题。我只能设置背景颜色,但无法在甜甜圈内设置背景图像。请检查图片。enter image description here enter image description here

1 个答案:

答案 0 :(得分:1)

这可能会有所帮助..

<RelativeLayout
   android:layout_width="match_parent"
   android:layout_height="170dp" >

   <LinearLayout
      android:id="@+id/left_graph_for_head_injury"   //here to draw donut
      android:layout_width="match_parent"
      android:layout_height="170dp" >
   </LinearLayout>

   <ImageView    //image to place
      android:layout_width="95dp"
      android:layout_height="95dp"
      android:layout_centerInParent="true"
      android:scaleType="fitXY"
      android:src="@drawable/inside_donut_head_injury_image" />
</RelativeLayout>