3

我正在使用aChartEngine库来制作甜甜圈图。但是在甜甜圈图内添加图像时遇到问题。我只能设置背景颜色,但无法在甜甜圈内设置背景图像。请检查图像。在此处输入图像描述 在此处输入图像描述

4

1 回答 1

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>
于 2014-04-13T11:33:14.790 回答