我需要查看一堆文本字段和一个有点堆栈图表栏,它有2个椭圆形状,上面有文字
我正在考虑使用xml布局并包含带有图像视图和文本的视图
<RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ImageView android:id="@+id/totalDays" android:layout_width="fill_parent"
android:layout_height="50dip" android:src="@drawable/shape_total" />
<ImageView android:id="@+id/usedDays" android:layout_width="50dip"
android:layout_height="50dip" android:src="@drawable/shape_days" />
<TextView android:id="@+id/textView1" android:text="TextView" android:layout_height="wrap_content"
android:layout_width="wrap_content" android:layout_alignBaseline="@id/usedDays"></TextView>
</RelativeLayout>
到目前为止,我有几个问题,如何旋转90%的形状并在每个形状的中间对齐文本。是否有更好的方法,如使用直接绘制方法? THX