Почему ScrollView не прокручивается? - PullRequest
0 голосов
/ 12 декабря 2018

У меня есть фрагментный макет с некоторыми текстами и двумя изображениями в нижней части.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
    tools:context=".ui.MyFragment">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:fillViewport="true">

        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="@dimen/24dp">

            <TextView
                android:id="@+id/fragment_my_start_header"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Title"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toTopOf="parent" />


            <TextView
                android:id="@+id/fragment_my_start_description"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="24dp"
                android:layout_marginTop="24dp"
                android:text="Description"
                app:layout_constraintBottom_toTopOf="@id/fragment_my_start_front"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@id/fragment_my_start_header" />


            <ImageView
                android:id="@+id/fragment_my_start_front"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:src="@drawable/myapp_perso_rotated"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toLeftOf="@id/fragment_my_start_back"
                app:layout_constraintTop_toBottomOf="@id/fragment_my_start_description" />

            <ImageView
                android:id="@+id/fragment_my_start_back"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:src="@drawable/myapp_perso_back_rotated"
                app:layout_constraintLeft_toRightOf="@id/fragment_my_start_front"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@id/fragment_my_start_description" />


            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="24dp"
                android:text="1. Image"
                app:layout_constraintBottom_toTopOf="@id/fragment_my_start_front"
                app:layout_constraintLeft_toLeftOf="@id/fragment_my_start_front" />


            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="24dp"
                android:text="2. Image"
                app:layout_constraintBottom_toTopOf="@id/fragment_my_start_back"
                app:layout_constraintLeft_toLeftOf="@id/fragment_my_start_back" />

        </android.support.constraint.ConstraintLayout>
    </ScrollView>

    <Button
        android:id="@+id/next_button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="24dp"
        android:text="Next"
        android:textColor="#FFFFFF" />

</LinearLayout>

А в нижней части у меня есть следующее основание.(На старых устройствах с низким разрешением) Изображения обрезаются внизу ScrollViews.Это не ошибка.Но я хотел бы прокрутить вверх, чтобы я мог видеть остальные изображения.ScrollView движется только на миллиметр, и я не могу видеть все ImageView.

Так как я могу сделать весь ScrollView прокручиваемым?

Ответы [ 2 ]

0 голосов
/ 12 декабря 2018

Я думаю, что нижняя часть изображений была обрезана, потому что мы не пытались прикрепить изображения к нижней части родительского изображения.Я попытался добавить app:layout_constraintBottom_toBottomOf="parent" к обоим изображениям вашего макета.После всего этого я удалил некоторые ненужные коды, такие как mergin и fillViewport, я получил этот код ниже.У меня нет изображений, которые вы используете, поэтому я использую изображения с по этому адресу (PS Извините, я не тестировал физические или виртуальные устройства, так как у меня медленный компьютер и устройства с низким разрешением.)

Вот мой окончательный код (надеюсь, это поможет):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
    tools:context=".activities.HomeActivity">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1">

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/tv_myStartHeader_fragment"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginTop="8dp"
            android:text="@string/title"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />


        <TextView
            android:id="@+id/tv_myStartDes_fragment"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/description"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/tv_myStartHeader_fragment" />


        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="@string/_1_image"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/tv_myStartDes_fragment" />

        <TextView
            android:id="@+id/textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:gravity="center"
            android:text="@string/_2_image"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toEndOf="@+id/textView2"
            app:layout_constraintTop_toBottomOf="@+id/tv_myStartDes_fragment" />

        <ImageView
            android:id="@+id/fragment_my_start_front"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:contentDescription="@string/todo"
            android:src="@drawable/sample"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/textView2" />

        <ImageView
            android:id="@+id/fragment_my_start_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:contentDescription="@string/todo"
            android:src="@drawable/sample"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toEndOf="@+id/fragment_my_start_front"
            app:layout_constraintTop_toBottomOf="@+id/textView" />


    </android.support.constraint.ConstraintLayout>
</ScrollView>

<Button
    android:id="@+id/next_button"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:text="@string/next"
    android:textColor="#FFFFFF" />

</LinearLayout>
0 голосов
/ 12 декабря 2018

Измените свой макет на это:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout  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"
    tools:context=".ui.MyFragment">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/next_button"
        android:fillViewport="true">

        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="@dimen/24dp">

            <TextView
                android:id="@+id/fragment_my_start_header"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Title"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toTopOf="parent" />


            <TextView
                android:id="@+id/fragment_my_start_description"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="24dp"
                android:layout_marginTop="24dp"
                android:text="Description"
                app:layout_constraintBottom_toTopOf="@id/fragment_my_start_front"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@id/fragment_my_start_header" />


            <ImageView
                android:id="@+id/fragment_my_start_front"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:src="@drawable/myapp_perso_rotated"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toLeftOf="@id/fragment_my_start_back"
                app:layout_constraintTop_toBottomOf="@id/fragment_my_start_description" />

            <ImageView
                android:id="@+id/fragment_my_start_back"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="24dp"
                android:src="@drawable/myapp_perso_back_rotated"
                app:layout_constraintLeft_toRightOf="@id/fragment_my_start_front"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@id/fragment_my_start_description" />


            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="24dp"
                android:text="1. Image"
                app:layout_constraintBottom_toTopOf="@id/fragment_my_start_front"
                app:layout_constraintLeft_toLeftOf="@id/fragment_my_start_front" />


            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="24dp"
                android:text="2. Image"
                app:layout_constraintBottom_toTopOf="@id/fragment_my_start_back"
                app:layout_constraintLeft_toLeftOf="@id/fragment_my_start_back" />

        </android.support.constraint.ConstraintLayout>
    </ScrollView>

    <Button
        android:id="@+id/next_button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="24dp"
        android:layout_alignParentBottom="true"
        android:text="Next"
        android:textColor="#FFFFFF" />

</RelativeLayout>
...