gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 23:37:55 25 4
gpt4 key购买 nike

当图像拉伸(stretch)按钮保持原位时,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>

最佳答案

在我的例子中,使用带背景的布局比 imageview 更好(感谢 Daksh Agrawal )。当我查看有关建议解决方案 (Android - zoom in/out RelativeLayout with spread/pinch) 的更多信息时,我发现它对我来说不太灵活。经过一番搜索后,我发现:https://github.com/natario1/ZoomLayout .它的几个实用程序有助于非常轻松地缩放和平移布局和 imageView。希望对某人有所帮助。

关于android - 如何根据缩放背景imageView来缩放按钮位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52092849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com