我正在使用aChartEngine
库来制作甜甜圈图。但是在甜甜圈图内添加图像时遇到问题。我只能设置背景颜色,但无法在甜甜圈内设置背景图像。请检查图像。
问问题
1149 次
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 回答