I have image view inside scroll view. ImageView must scroll. Image resolution 1278x4987 (png) Here is my code:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitStart"
android:src="@drawable/image_test" />
</LinearLayout>
</ScrollView>
In my log:
Bitmap too large to be uploaded into a texture (1923x7500, max=4096x4096)
But my image view not showing on some devices. Image size is not large. What could be causing this? Help me please