All of the image sizes are only below 150kb. I know is the resolution problem, but how can I solve it without changing the resolution? All of the images have different resolutions. The biggest one is 1800*1200 pixels, the smallest is 1109*614 pixels. I have tried the answer find at here. But it does not work.
This is my source code. I was cutting it to become shorter because the system does not allow me to post it in longer code.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="top"
android:orientation="vertical"
>
<ScrollView
android:fillViewport="true"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="top"
android:orientation="vertical"
>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:src="@drawable/back" />
<TextView
android:fontFamily="@font/im_fell_dw_pica_sc"/>
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:src="@drawable/abs3" />
<TextView
android:fontFamily="@font/im_fell_dw_pica_sc"/>
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:src="@drawable/leg" />
<TextView
/>
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:src="@drawable/chest"
/>
<TextView
/>
</FrameLayout>
</LinearLayout>
</ScrollView>