如何解决我的滚动视图无法正确滚动Android

时间:2019-04-19 01:46:19

标签: android android-scrollview

我的scrollview应用出现问题,我不知道可能是什么问题,滚动条没有显示布局顶部的内容,而是显示空白底部的空间

我尝试将滚动视图用作父视图,但尝试将其放在约束布局中,但是这些都不能解决问题。

这是我的布局,是一个片段。实际上,它在菜单中包含13个元素,当然,我并没有粘贴所有项,只是一个。

<ScrollView
    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:scrollbars="none"
    tools:context=".MenuFragment">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <android.support.v7.widget.CardView
            android:id="@+id/cardViewMenuPerfil"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:id="@+id/linearLayout2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@color/colorAccent"
                android:orientation="horizontal"
                android:padding="20dp">

                <de.hdodenhof.circleimageview.CircleImageView
                    android:id="@+id/imageViewMenuPerfil"
                    android:layout_width="50dp"
                    android:layout_height="50dp"
                    android:src="@drawable/ic_perfil_imagen"
                    app:civ_border_color="#ffffff"
                    app:civ_border_width="2dp" />

                <TextView
                    android:id="@+id/textViewMenuPerfilNombre"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:background="@color/colorAccent"
                    android:paddingStart="15dp"
                    android:text="@string/vacio"
                    android:textAlignment="viewStart"
                    android:textColor="@color/colorIcons"
                    android:textSize="16sp"
                    tools:text="Jorge Hernandez Nunez" />
            </LinearLayout>

        </android.support.v7.widget.CardView>

        <Button
            android:id="@+id/buttonMenuMisAnimales"
            style="@style/buttonMenu"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:drawableStart="@drawable/ic_mis_animales"
            android:text="@string/title_mis_animales" />

        <View style="@style/dividerComplete" />
    </LinearLayout>
</ScrollView>

这是包含我的片段的活动。

<?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:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="0dp"
        android:layout_marginStart="0dp"
        android:background="?android:attr/windowBackground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/navigation" />

    <FrameLayout
        android:id="@+id/contenedor"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        app:layout_constraintBottom_toTopOf="@+id/navigation"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

这就是https://ibb.co/QQDTz6n的样子,在大屏幕上没有问题,问题在小屏幕上,因为 它不会显示在个人资料的一部分中:https://ibb.co/D8NL7kH 并显示空白https://ibb.co/vJWmTHN

0 个答案:

没有答案