我在图像视图上放置按钮时遇到了问题。
我想在图像视图的顶部放置一个按钮,以便按钮在图像上“打开”。
到目前为止,我已经完成了某种方式,例如
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
并在应用程序启动时以编程方式添加按钮(在“onCreate”上),因此该按钮显示在图像的顶部。
它工作正常,但问题是当我缩放/拖动图像时。
我希望按钮随图像一起移动/缩放,但是根据我上面的内容,按钮停留在屏幕上的固定位置,只有图像被缩放/拖动。
我有办法做到这一点吗?
提前致谢。