我使用aChartEngine
库制作甜甜圈图。但是在甜甜圈图中添加图像有问题。我只能设置背景颜色,但无法在甜甜圈内设置背景图像。请检查图片。
答案 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>