考虑上面的图片。
红线表示图像文件边框,黑线表示实际"有用"图像的像素,白色=透明。
如何以这种方式定位这些图像?
我不确定这会对上述方式产生影响,但我计划对每张图片实施基本动画(让每张图片相对于各自的中心旋转)。
这就是我到目前为止(将3个元素放在中心,相互重叠):
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/img_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription = "@string/img1"
android:src="@drawable/img1"
<ImageView
android:id="@+id/img_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/img2"
android:rotation="45"
android:src="@drawable/img2" />
<ImageView
android:id="@+id/img_3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/img3"
android:rotation="200"
android:src="@drawable/img3" />
谢谢!
/ e 1 - 感谢您在图片中进行编辑 2 - 我通过反复试验解决了这个问题,谢谢你!