如何根据缩放背景imageView缩放按钮位置?

时间:2018-08-30 08:51:50

标签: android android-layout

imageView顶部的按钮位置同步存在问题-当图像拉伸按钮保持在原位时。我希望按钮根据imageView缩放同步移动(同时保持宽高比)。 enter image description here

在所附图片上,您可能会发现问题。当我按手势调整图像大小时,按钮(图标[V])保持其位置。我想在调整图像大小和拖动时自动移动按钮。

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/floorPlanLayout"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".OrderActivity">

    <com.github.chrisbanes.photoview.PhotoView
        android:id="@+id/imageViewFloorPlan"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@drawable/ic_placeholder"
        />

    <android.support.constraint.ConstraintLayout
        android:id="@+id/buttonsLayout"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:background="@drawable/imageview_border_background">

    </android.support.constraint.ConstraintLayout>

</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:1)

就我而言,最好使用带背景的布局比使用imageview(感谢 Daksh Agrawal)。当我对提议的解决方案(Android - zoom in/out RelativeLayout with spread/pinch)进行了更多的回顾时,我发现它对我来说不太灵活。稍作搜索后,我发现:https://github.com/natario1/ZoomLayout。它的几个实用程序可以非常轻松地缩放和平移Layout和imageView。希望对别人有帮助。