У меня есть изображение размером 3000 x 1500
пиксель.Я хочу, чтобы он помещался на экране по вертикали, и я должен иметь возможность прокручивать его по горизонтали.
Проект в GITHUB : https://github.com/rameezalam/imagescrolldemo https://github.com/rameezalam/imagescrolldemo/archive/master.zip
Ссылка на изображение: https://github.com/rameezalam/imagescrolldemo/raw/master/app/src/main/res/drawable/peace.jpg
Ниже приведен мой код:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBlue"
tools:context=".MainActivity">
<HorizontalScrollView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/colorPink"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@color/colorYellow"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:src="@drawable/peace" />
</LinearLayout>
</HorizontalScrollView>
</android.support.constraint.ConstraintLayout>
В предварительном просмотре файла макета в студии Android я вижу, что он работает так, как ожидал.
В реальном устройстве One Plus 3T с android 8.0.0 изображение отображается, как показано ниже
- compileSdkVersion 27
- minSdkVersion 15
- targetSdkVersion 27
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
РЕДАКТИРОВАТЬ
Итак, после добавления цветов фона в мои макеты, вот что я получил.Похоже, представление изображения не расширяется до родительского представления.