gpt4 book ai didi

Android 双指缩放ImageView(PhotoView)与ScrollView

转载 作者:太空宇宙 更新时间:2023-11-03 11:11:44 31 4
gpt4 key购买 nike

我在 android 中有以下布局,其中我基本上有一个带有由其他 ImageView + TextView 组成的复合标题的 ImageView :

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<RelativeLayout
android:id="@+id/imagePager_container"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<uk.co.senab.photoview.PhotoView
android:id="@+id/imagePager_imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>

<TextView
android:id="@+id/imagePager_textTitle"
android:layout_width="fill_parent"
android:gravity="center"
android:textStyle="bold"
android:text="TITLE"
android:layout_margin="0dp"
android:layout_below="@+id/imagePager_imageView"
android:layout_height="wrap_content"/>

<ImageView android:id="@+id/imagePager_titleLine"
android:layout_width="fill_parent"
android:layout_below="@+id/imagePager_textTitle"
android:layout_height="match_parent"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:src="@drawable/linebig"/>

<TextView
android:id="@+id/imagePager_textSubtitle"
android:layout_width="fill_parent"
android:gravity="center"
android:text="SUBTITLE"
android:layout_margin="0dp"
android:layout_below="@+id/imagePager_titleLine"
android:layout_height="wrap_content"/>

<ImageView android:id="@+id/imagePager_subtitleLine"
android:layout_below="@+id/imagePager_textSubtitle"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:paddingBottom="10dp"
android:src="@drawable/linebig"/>

<TextView
android:id="@+id/imagePager_textContent"
android:layout_width="fill_parent"
android:paddingTop="15dp"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:text="CONTENT"
android:layout_margin="0dp"
android:layout_below="@+id/imagePager_subtitleLine"
android:layout_height="wrap_content"/>


</RelativeLayout>
</ScrollView>

问题是,如果整个内容太“长”以至于启用了 ScrollView,则 Pinch Zoom 不起作用。否则它会完美地工作。我想 ScrollView 听众会考虑“捏合”和向上/向下运动。有人对此有解决方案吗?

最佳答案

将 ScrollView 更改为 android.support.v4.widget.NestedScrollView

关于Android 双指缩放ImageView(PhotoView)与ScrollView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23328024/

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