0

私は2000dp前後の大きな高さの画像を持っています。高さまでスクロールできる ImageView に表示したい。私は次の xml ファイルを書きました。デバイスでは問題なく動作しますが、HTC one X、Samsung galaxy S4 などではうまく動作しません。大画面のモバイル デバイスの問題だと思います。誰か助けてください。私は彼/彼女に非常に感謝します.

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="2000dp"
    android:layout_below="@+id/total"
    android:scrollbars="vertical" >

    <FrameLayout
        android:id="@+id/relativeLayout"
        android:layout_width="fill_parent"
        android:layout_height="2000dp" >

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

        <ImageView
            android:id="@+id/image1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:scaleType="fitXY"
            android:src="@drawable/dayview_bg" />

        <ImageView
            android:id="@+id/image2"
            android:layout_width="fill_parent"
            android:layout_height="2dp"
            android:background="@android:color/white"
            android:scaleType="fitXY" />
    </FrameLayout>
</ScrollView>
4

1 に答える 1