Все размеры изображений не превышают 150 КБ. Я знаю, это проблема разрешения, но как я могу решить ее, не меняя разрешение? Все изображения имеют разные разрешения. Самый большой - 1800 * 1200 пикселей, самый маленький - 1109 * 614 пикселей. Я попытался найти ответ на здесь . Но это не работает.
Это выходной интерфейс.
Это мой исходный код. Я сократил его, чтобы он стал короче, потому что система не позволяет мне публиковать его в более длинном коде.
<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>