私は、いくつかの画像ビューを持つScrollViewを持っています。しかし、スクロールは非常に遅く、パフォーマンスが悪い理由は何か分かりません。スクロールを高速化するために何かする必要はありますか? またはこの問題の原因は何ですか?Android ScrollViewでスロースクロール
`
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView />
<ImageView />
<ImageView />
<ImageView />
<ImageView />
<ImageView />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="center"
android:orientation="vertical">
<Button />
</LinearLayout>
</RelativeLayout>
</ScrollView>
</RelativeLayout>`
不必要にネストされた 'RelativeLayout'に加えて、問題を引き起こすものはないようです。 「遅い」とは、それが文字通りゆっくりとスクロールすることを意味しますか、スクロールするとレンダリングに問題が生じるかどうかを意味しますか?あなたが読み込んでいる画像の大きさはどれくらいですか?大きな画像を読み込んでいる場合は、ファイルサイズを小さくしてみてください。 – Charlemagne