放大时为什么不嵌套ScrollView和Horizo​​ntalScrollView滚动到边缘?

时间:2018-06-08 21:10:46

标签: java android xml android-layout android-scrollview

我正在使用带有嵌套ScrollView的{​​{1}},以便用户可以在所有方向上平移图片。我还添加了基本的缩放缩放功能,但是当我放大时,我无法一直向边缘滚动。造成这种情况的原因是什么?

XML布局:

HorizontalScrollView

主要活动类:

    <?xml version="1.0" encoding="utf-8"?>
    <ScrollView
         xmlns:android="http://schemas.android.com/apk/res/android"
         android:id="@+id/scrollView"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:fillViewport="true">

         <HorizontalScrollView
             android:id="@+id/horizontalScrollView"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent"
             android:fillViewport="true">

             <RelativeLayout
                 android:id="@+id/relativeLayout"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:layout_weight="1">

             </RelativeLayout>

         </HorizontalScrollView>

    </ScrollView>

我的第一个想法是我的滚动视图不够大,无法滚动到图片的边缘,但我不知道如何解决这个问题。

0 个答案:

没有答案