Android - 为什么用户必须用一根手指向下按住,同时使用另一根手指上下滑动才能成功滚动?

时间:2016-01-13 07:00:44

标签: android android-layout android-fragments

目前我有一个布局的代码(用于扩展Fragment的类):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <ImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:src="@drawable/_image" />

    </ScrollView>

</LinearLayout>

ImageView包含的图像长度超过设备的高度,因此需要上下滚动才能查看所有图像。

只有当我用另一根手指向上和向下滑动时,我才可以向上和向下滚动图像(注意,如果我只使用它,我无法在图像上上下滚动一根手指上下滑动。)

想知道是否有人知道如何解决这个问题? (即使我只能用一根手指在图像上上下滚动)(提前谢谢)

0 个答案:

没有答案