我正在尝试创建一个具有地图(图像)的界面,其中可点击的元素(如文本或按钮)作为叠加层。该地图是一个ImageViewTouch元素(src:https://github.com/sephiroth74/ImageViewZoom),并通过触摸实现缩放和平移功能。
我目前的布局如下:
<it.sephiroth.android.library.imagezoom.ImageViewTouch
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:clickable="true" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:shadowColor="#000"
android:text="This is some random text"
android:textSize="22sp" />
</RelativeLayout>
问题是,如何根据地图“锁定”TextView(和其他元素)的位置。因此,当用户缩放或平移图像时,TextView会移动并调整大小。
我是Android UI开发的新手,所以我不知道要采取什么方向,比如迭代所有元素并根据图像比例和滚动值移动/调整它们或者......